aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh2
-rwxr-xr-xbinary_tarball/scripts/3_Configure_Source_Code.sh2
-rwxr-xr-xbinary_tarball/scripts/5_Configure_Binary_Tarball.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index cf7d0f7..f6c16ac 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -7,4 +7,4 @@ _DEPENDENCIES="mercurial wget git";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
apt-get -qq update;
-apt-get -qq install -y $_DEPENDENCIES;
+apt-get -y -qq install $_DEPENDENCIES;
diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh
index befaf7e..6680eb2 100755
--- a/binary_tarball/scripts/3_Configure_Source_Code.sh
+++ b/binary_tarball/scripts/3_Configure_Source_Code.sh
@@ -3,7 +3,7 @@ printf "\n\n------------------------------ FINAL PREBUILD CONFIGURATION --------
# Setup Script Variables
SOURCE_CODE_FOLDER=$1;
-_COMMON_REPO='git@gitlab.com:librewolf-community/browser/common.git';
+_COMMON_REPO='https://gitlab.com/librewolf-community/browser/common.git';
_POCKET_SED_STRING="s/'pocket'/#'pocket'/g";
_POCKET_FILE=$SOURCE_CODE_FOLDER/browser/components/moz.build;
diff --git a/binary_tarball/scripts/5_Configure_Binary_Tarball.sh b/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
index 562b05e..cae42b0 100755
--- a/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
+++ b/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
@@ -6,7 +6,7 @@ BINARY_TARBALL=$1;
TOGGLE_SETTINGS_SCRIPT=$2l
LAUNCHER_SCRIPT=$3;
_EXTRACTED_TARBALL_FOLDER=./librewolf;
-_SETTINGS_REPO='git@gitlab.com:librewolf-community/librewolf-settings.git';
+_SETTINGS_REPO='https://gitlab.com/librewolf-community/settings.git';
# Extracts the binary tarball
printf "\nExtracting librewolf binary tarball\n";
bgstack15