Clean shell scripts (#398)

This commit is contained in:
Léo Andrès
2018-03-27 09:35:12 +01:00
committed by Chocobozzz
parent d5b7d9110d
commit 0e4ffb4b67
22 changed files with 97 additions and 59 deletions

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env sh
#!/bin/sh
set -eu
NODE_ENV=test concurrently -k \
"npm run watch:client" \

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env sh
#!/bin/sh
set -eu
NODE_ENV=test concurrently -k \
"npm run watch:client" \

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env sh
#!/bin/sh
set -eu
if [ ! -f "./client/dist/index.html" ]; then
echo "client/dist/index.html does not exist, compile client files..."