Fix build script
This commit is contained in:
parent
ba430d7516
commit
e43ed96ef4
1 changed files with 2 additions and 2 deletions
|
@ -2,12 +2,12 @@
|
|||
|
||||
set -eu
|
||||
|
||||
if [[ -n ${1+x} ]]; then
|
||||
if [ ! -z ${1+x} ]; then
|
||||
clientCommand="npm run build:client -- $1"
|
||||
else
|
||||
clientCommand="npm run build:client"
|
||||
fi
|
||||
|
||||
npm run concurrently -- --raw \w
|
||||
npm run concurrently -- --raw \
|
||||
"$clientCommand" \
|
||||
"npm run build:server"
|
||||
|
|
Loading…
Reference in a new issue