]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/build/index.sh
Fix import tests
[github/Chocobozzz/PeerTube.git] / scripts / build / index.sh
... / ...
CommitLineData
1#!/bin/bash
2
3set -eu
4
5if [ ! -z ${1+x} ]; then
6 clientCommand="npm run build:client -- $1"
7else
8 clientCommand="npm run build:client"
9fi
10
11npm run concurrently -- --raw \
12 "$clientCommand" \
13 "npm run build:server"