]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/build/index.sh
Add checkbox focus shadows, and admin resolution descriptions
[github/Chocobozzz/PeerTube.git] / scripts / build / index.sh
index fde6efe320afd8c79730e62a2ff2b4a47b33b737..d7d04fd083ed83c083f33d0417115555a0d7440b 100755 (executable)
@@ -2,6 +2,12 @@
 
 set -eu
 
-npm run concurrently -- -k \
-  "npm run build:client" \
+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"