From 1a9f599fae8b674f197839a3b9ef05294e1905f0 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Wed, 30 Oct 2019 21:34:24 +0100 Subject: [PATCH] Scripts not using files.js as well instead of the PHP file --- scripts/client_build.sh | 2 +- scripts/web_build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/client_build.sh b/scripts/client_build.sh index 11b1b116..3b44e4b9 100755 --- a/scripts/client_build.sh +++ b/scripts/client_build.sh @@ -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 diff --git a/scripts/web_build.sh b/scripts/web_build.sh index e04efded..54b46820 100755 --- a/scripts/web_build.sh +++ b/scripts/web_build.sh @@ -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