aboutsummaryrefslogtreecommitdiff
path: root/browser
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-06-12 17:48:07 -0500
committerBeatLink <beatlink@protonmail.com>2019-06-12 17:48:07 -0500
commit6f1806eaa472199ac07af8dc10b3eabe36a6c870 (patch)
tree35f6a776582eebe7f764d962babe9dbf9dc2bc9d /browser
parentFix Pipeline Badge in README (diff)
downloadlibrewolf-linux-6f1806eaa472199ac07af8dc10b3eabe36a6c870.tar.gz
librewolf-linux-6f1806eaa472199ac07af8dc10b3eabe36a6c870.tar.bz2
librewolf-linux-6f1806eaa472199ac07af8dc10b3eabe36a6c870.zip
Fix bug that caused script to fail
Diffstat (limited to 'browser')
-rwxr-xr-xbrowser/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/browser/build.sh b/browser/build.sh
index c7cde02..dbd7daf 100755
--- a/browser/build.sh
+++ b/browser/build.sh
@@ -14,7 +14,7 @@ https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/boots
. $HOME/.cargo/env;
# Downloads further dependencies
-sudo apt install inkscape;
+sudo apt install inkscape -y;
# BUILD ###########################################################################################
# Creates and enters the folder where compiling will take place
bgstack15