Build script repair

This commit is contained in:
PMKuipers 2023-08-15 15:34:15 +02:00
parent 365b3d8949
commit 91f325ffd4

View File

@ -1,5 +1,5 @@
#!/bin/bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
WD=`pwd`
# get the current vuejs mode
VUEMODE=`$SCRIPTDIR/vuemode.sh query`
@ -11,13 +11,13 @@ fi
$SCRIPTDIR/vuemode.sh prod
# run the grunt script in the scripts working directory
cd $SCRIPT_DIR
cd $SCRIPTDIR
grunt amd
# run the build php script
php ${SCRIPT_DIR}/build.php $@
php ${SCRIPTDIR}/build.php $@
if [[ "$VUEMODE" == "dev"]]; then
if [[ "$VUEMODE" == "dev" ]]; then
# switch vuejs vack to original mode
$SCRIPTDIR/vuemode.sh $VUEMODE