aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/server.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/dev/server.sh b/scripts/dev/server.sh
index bff26cb4b..3130f1d87 100755
--- a/scripts/dev/server.sh
+++ b/scripts/dev/server.sh
@@ -1,7 +1,7 @@
1#!/usr/bin/env sh 1#!/usr/bin/env sh
2 2
3if [ ! -d "./client/dist" ]; then 3if [ ! -f "./client/dist/index.html" ]; then
4 echo "client/dist does not exist, compile client files..." 4 echo "client/dist/index.html does not exist, compile client files..."
5 npm run build:client 5 npm run build:client
6fi 6fi
7 7