Scripts not using files.js as well instead of the PHP file

This commit is contained in:
WolverinDEV 2019-10-30 21:34:24 +01:00
parent 8e877efb37
commit 1a9f599fae
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ elif [[ "$type" == "development" ]]; then
fi
echo "Generating environment"
php files.php generate client ${type}
node files.js generate client ${type}
if [[ $? -ne 0 ]]; then
echo "Failed to generate environment"
exit 1

View file

@ -88,7 +88,7 @@ elif [[ "$type" == "development" ]]; then
fi
echo "Generating environment"
php files.php generate web ${type}
node files.js generate web ${type}
if [[ $? -ne 0 ]]; then
echo "Failed to generate environment"
exit 1