1
0
Fork 0
peertube/scripts/build/index.sh
2020-02-19 08:57:32 +01:00

13 lines
218 B
Bash
Executable file

#!/bin/bash
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"