aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'binary_tarball/scripts')
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh4
-rwxr-xr-xbinary_tarball/scripts/5_Configure_Binary_Tarball.sh6
2 files changed, 5 insertions, 5 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index f6c16ac..49f0613 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -6,5 +6,5 @@ _DEPENDENCIES="mercurial wget git";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
-apt-get -qq update;
-apt-get -y -qq install $_DEPENDENCIES;
+DEBIAN_FRONTEND=noninteractive apt-get -qq update;
+DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
diff --git a/binary_tarball/scripts/5_Configure_Binary_Tarball.sh b/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
index cae42b0..266fbd2 100755
--- a/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
+++ b/binary_tarball/scripts/5_Configure_Binary_Tarball.sh
@@ -10,17 +10,17 @@ _SETTINGS_REPO='https://gitlab.com/librewolf-community/settings.git';
# Extracts the binary tarball
printf "\nExtracting librewolf binary tarball\n";
-tar -xvf $BINARY_TARBALL;
+tar -xf $BINARY_TARBALL;
# Adds the librefox config files to the packaged tarball
printf "\nCopying librewolf settings to extracted binary tarball\n";
-git clone _SETTINGS_REPO $_EXTRACTED_TARBALL_FOLDER/settings;
+git clone $_SETTINGS_REPO $_EXTRACTED_TARBALL_FOLDER/settings;
cp $TOGGLE_SETTINGS_SCRIPT $_EXTRACTED_TARBALL_FOLDER/settings;
cp $LAUNCHER_SCRIPT $_EXTRACTED_TARBALL_FOLDER/launch_librewolf.sh;
# Repacks the binary tarball
printf "\nRecompressing binary tarball\n";
-tar -jcvf $BINARY_TARBALL $_EXTRACTED_TARBALL_FOLDER;
+tar -jcf $BINARY_TARBALL $_EXTRACTED_TARBALL_FOLDER;
bgstack15