Fix mach command

This commit is contained in:
BeatLink 2019-07-17 15:22:03 -05:00
parent 7f49d7fd02
commit 291e1baaad
2 changed files with 4 additions and 4 deletions

View file

@ -3,6 +3,10 @@
SOURCE_FOLDER=$1;
OUTPUT_TARBALL=$2;
# Prevents build from breaking in CI/CD environments
export SHELL=/bin/bash;
printf "SHELL=$SHELL\n";
printf "\n\n--------------------------------------- BUILD -----------------------------------------------\n";
# Installs build dependencies (using the ./mach script inside the source code)

View file

@ -1,10 +1,6 @@
#!/bin/sh
printf "\n------------------------------------- SCRIPT SETUP ------------------------------------------\n";
# Prevents build from breaking in CI/CD environments
#export SHELL=/bin/bash;
#printf "SHELL=$SHELL\n";
# Aborts the script upon any faliure
set -e;