diff options
Diffstat (limited to 'scripts/dev/client.sh')
-rwxr-xr-x | scripts/dev/client.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/client.sh b/scripts/dev/client.sh index a056b7d7f..e9cade800 100755 --- a/scripts/dev/client.sh +++ b/scripts/dev/client.sh | |||
@@ -5,7 +5,7 @@ set -eu | |||
5 | clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" | 5 | clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" |
6 | serverCommand="npm run build:server && NODE_ENV=test node dist/server" | 6 | serverCommand="npm run build:server && NODE_ENV=test node dist/server" |
7 | 7 | ||
8 | if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then | 8 | if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then |
9 | NODE_ENV=test eval $clientCommand | 9 | NODE_ENV=test eval $clientCommand |
10 | else | 10 | else |
11 | NODE_ENV=test node node_modules/.bin/concurrently -k \ | 11 | NODE_ENV=test node node_modules/.bin/concurrently -k \ |