X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fdev%2Findex.sh;h=56addb7fe20dc9296eba9cae02039828aed1d070;hb=8546fe878d5f92161b83517c4bc1ecb7dedf3e9d;hp=938bf60567758458df5931a8c430e55c559baa0d;hpb=93e1258c7cbc0d1235ca6d2a1f7c1875985328b8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/dev/index.sh b/scripts/dev/index.sh index 938bf6056..56addb7fe 100755 --- a/scripts/dev/index.sh +++ b/scripts/dev/index.sh @@ -1,5 +1,7 @@ -#!/usr/bin/env sh +#!/bin/bash -NODE_ENV=test concurrently -k \ - "npm run watch:client" \ - "npm run watch:server" +set -eu + +NODE_ENV=test npm run concurrently -- -k \ + "sh scripts/dev/client.sh --skip-server" \ + "sh scripts/dev/server.sh --skip-client"