Skip to content

Commit

Permalink
Added missing script execute flags
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Apr 2, 2020
1 parent ca4e8f8 commit deee8cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ if [[ $_exit_code -ne 0 ]]; then
fi

echo "Generating required build tooks"
chmod +x ./tools/build_trgen.sh
./tools/build_trgen.sh; _exit_code=$?
if [[ $_exit_code -ne 0 ]]; then
echo "Failed to build build_typescript translation generator"
Expand All @@ -64,6 +65,7 @@ fi

if [[ "$build_type" == "release" ]]; then # Compile everything for release mode
echo "Packing generated css files"
chmod +x ./shared/css/generate_packed.sh
./shared/css/generate_packed.sh; _exit_code=$?
if [[ $_exit_code -ne 0 ]]; then
echo "Failed to package generated css files"
Expand Down

0 comments on commit deee8cd

Please sign in to comment.