Skip to content

Commit 85be15b

Browse files
committed
fix run script, shell scopping behaviour was putting the build script in it's own child process
1 parent fab3106 commit 85be15b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
66
# Build the source code
77
# source $current_dir/environment.sh - no longer necessary
88
source "$current_dir/clean.sh"
9-
if ! bash "$current_dir/build.sh"; then
9+
if ! source "$current_dir/build.sh"; then
1010
echo "Error: Build failed. Aborting."
1111
exit 1
1212
fi

0 commit comments

Comments
 (0)