1
0
Fork 0
peertube/scripts/build/index.sh
2019-12-18 15:40:59 +01:00

13 lines
216 B
Bash
Executable file

#!/bin/sh
set -eu
if [ ! -z ${1+x} ]; then
clientCommand="npm run build:client -- $1"
else
clientCommand="npm run build:client"
fi
npm run concurrently -- --raw \
"$clientCommand" \
"npm run build:server"