aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/build
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build')
-rwxr-xr-xscripts/build/index.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/index.sh b/scripts/build/index.sh
index 31f2733c3..d7d04fd08 100755
--- a/scripts/build/index.sh
+++ b/scripts/build/index.sh
@@ -2,12 +2,12 @@
2 2
3set -eu 3set -eu
4 4
5if [[ -n ${1+x} ]]; then 5if [ ! -z ${1+x} ]; then
6 clientCommand="npm run build:client -- $1" 6 clientCommand="npm run build:client -- $1"
7else 7else
8 clientCommand="npm run build:client" 8 clientCommand="npm run build:client"
9fi 9fi
10 10
11npm run concurrently -- --raw \w 11npm run concurrently -- --raw \
12 "$clientCommand" \ 12 "$clientCommand" \
13 "npm run build:server" 13 "npm run build:server"