aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/1_Install_Dependencies.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:45:34 +0000
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:45:34 +0000
commitebd593571b8962af5c6025ba666ca5a474087bb1 (patch)
tree5f0c63d360a1e932756f050baed942c4a36ee39f /binary_tarball/scripts/1_Install_Dependencies.sh
parentfix appimage build (diff)
parenttemporarily disable custom config/patches during build (diff)
downloadlibrewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.gz
librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.bz2
librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.zip
Merge branch 'arch_based_ci' into 'master'
CI/build script rewrite See merge request librewolf-community/browser/linux!7
Diffstat (limited to 'binary_tarball/scripts/1_Install_Dependencies.sh')
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index 49f0613..58cde9b 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -2,7 +2,7 @@
printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
# Setup Script Variables
-_DEPENDENCIES="mercurial wget git";
+_DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
bgstack15