moodle_local_treestudyplan/build.sh
2023-08-25 11:52:05 +02:00

31 lines
676 B
Bash
Executable File

#!/bin/bash
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
WD=`pwd`
# get the current vuejs mode
VUEMODE=`$SCRIPTDIR/vuemode.sh query`
if [[ $? -eq 1 ]]; then
exit 1
fi
# switch vuejs to prod mode
$SCRIPTDIR/vuemode.sh prod
# run the grunt script in the scripts working directory
# so we can be sure all javascript is properly built from the most recent source
cd $SCRIPTDIR
grunt amd
# run the build php script
php ${SCRIPTDIR}/build.php $@
if [[ "$VUEMODE" == "dev" ]]; then
# switch vuejs vack to original mode
$SCRIPTDIR/vuemode.sh $VUEMODE
# re-do the grunt compiling
grunt amd
fi
# return to the working directory
cd $WD