1
0
Fork 0
peertube/scripts/dev/server.sh

11 lines
208 B
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
2017-06-11 09:29:03 +00:00
2019-11-29 12:36:40 +00:00
if [ ! -f "./client/dist/en-US/index.html" ]; then
echo "client/dist/en-US/index.html does not exist, compile client files..."
npm run build:client -- --light
2017-06-11 09:29:03 +00:00
fi
npm run watch:server