generating the file helper before using it

This commit is contained in:
WolverinDEV 2019-10-30 21:39:38 +01:00
parent 1a9f599fae
commit 1d9f9e7e2d
2 changed files with 14 additions and 0 deletions

View file

@ -19,6 +19,13 @@ else
exit 1
fi
echo "Generating file helper script"
npm run compile-file-helper
if [[ $? -ne 0 ]]; then
echo "Failed to generate file helper"
exit 1
fi
echo "Generating style files"
npm run compile-sass
if [[ $? -ne 0 ]]; then

View file

@ -20,6 +20,13 @@ else
exit 1
fi
echo "Generating file helper script"
npm run compile-file-helper
if [[ $? -ne 0 ]]; then
echo "Failed to generate file helper"
exit 1
fi
echo "Generating style files"
npm run compile-sass
if [[ $? -ne 0 ]]; then