mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-12-02 05:19:17 -06:00
14 lines
218 B
Bash
Executable File
14 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"
|