Fixed automated release builds

canary
WolverinDEV 2019-11-09 13:35:57 +01:00
parent 1d22caf19b
commit 259a317440
1 changed files with 13 additions and 0 deletions

View File

@ -27,6 +27,19 @@ if [[ $? -ne 0 ]]; then
exit 1
fi
echo "Compile vendor XBBCode"
execute_ttsc -p ./vendor/xbbcode/tsconfig.json
if [[ $? -ne 0 ]]; then
echo "Failed to build the XBBCode vendor"
exit 1
fi
execute_ttsc ./vendor/emoji-picker/src/jquery.lsxemojipicker.ts
if [[ $? -ne 0 ]]; then
echo "Failed to build the lsxemojipicker vendor"
exit 1
fi
echo "Generating style files"
npm run compile-sass
if [[ $? -ne 0 ]]; then