diff options
Diffstat (limited to 'lumebuild.sh')
-rw-r--r-- | lumebuild.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lumebuild.sh b/lumebuild.sh index 3f794d4..755a571 100644 --- a/lumebuild.sh +++ b/lumebuild.sh @@ -1,6 +1,6 @@ #!/bin/bash -LUME_DIR="/var/www/html/soulmining" +LUME_DIR="/your/lume/dir" SRC_DIR="$LUME_DIR/src" BUILD_DIR="site" WEBPSH="/your/webp/convert/path" @@ -17,6 +17,7 @@ git commit -m "`date`" if [ $? -eq 0 ]; then $WEBPSH cd $LUME_DIR || exit + # deno task lume --dest=$BUILD_DIR > /dev/null deno task lume --dest=$BUILD_DIR > /dev/null 2>&1 else exit 1 |