Remove unnecessary if-statement.

This commit is contained in:
Nicolás A. Ortega Froysa 2022-11-10 19:22:24 +01:00
parent fc50e669a5
commit 1d1406bb2b

View File

@ -260,8 +260,6 @@ case $1 in
build)
VERBOSE=0
JOBS=1
if [ $# -gt 1 ]
then
for i in ${@:2}
do
case $i in
@ -281,7 +279,6 @@ case $1 in
exit 1;;
esac
done
fi
build_project $VERBOSE $JOBS;;
serve|server)
php -S localhost:8080 -t $OUTPUT_DIR/;;