aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/4_Build_Binary_Tarball.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 11:36:10 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 11:36:10 +0200
commitd27a4bcb38128c4fd12415f9006b6fc62fdadff6 (patch)
tree3f51b9300a44a04c5d44a39f25d78ad06a65f572 /binary_tarball/scripts/4_Build_Binary_Tarball.sh
parentspecify clang versions; some further script fixes/corrections (diff)
downloadlibrewolf-linux-d27a4bcb38128c4fd12415f9006b6fc62fdadff6.tar.gz
librewolf-linux-d27a4bcb38128c4fd12415f9006b6fc62fdadff6.tar.bz2
librewolf-linux-d27a4bcb38128c4fd12415f9006b6fc62fdadff6.zip
check if mach bootstrap errors when succeeding?
Diffstat (limited to 'binary_tarball/scripts/4_Build_Binary_Tarball.sh')
-rwxr-xr-xbinary_tarball/scripts/4_Build_Binary_Tarball.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
index e38c808..8dd4bf9 100755
--- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh
+++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
@@ -1,8 +1,6 @@
#!/bin/bash
printf "\n\n--------------------------------------- BUILD -----------------------------------------------\n";
-set -e
-
# Setup Script Variables
srcdir=$1;
OUTPUT_TARBALL=$2;
@@ -48,7 +46,7 @@ cd $srcdir;
# Runs bootstrapper to install dependencies
printf "\nRunning bootstrapper to install build dependencies (using ./mach script within source code)\n";
-./mach bootstrap --application-choice=browser --no-interactive;
+./mach bootstrap --application-choice=browser --no-interactive
# add cargo binary to path
source /root/.cargo/env
bgstack15