aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 01:14:10 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 01:14:10 +0100
commitd0a7d8b4e2cc60de8b4c539f52bbd8ab423b994b (patch)
treec5dc612dea971000b70ddc5ad090c61b8b9df909
parentbad c&p fixed (sudo) (diff)
downloadlibrewolf-linux-d0a7d8b4e2cc60de8b4c539f52bbd8ab423b994b.tar.gz
librewolf-linux-d0a7d8b4e2cc60de8b4c539f52bbd8ab423b994b.tar.bz2
librewolf-linux-d0a7d8b4e2cc60de8b4c539f52bbd8ab423b994b.zip
how hard can it be?
-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 7ce06c6..2034691 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -14,7 +14,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
# Installs (non-ancient) clang
-DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common
+DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common apt-transport-https ca-certificates
apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main"
DEBIAN_FRONTEND=noninteractive wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
DEBIAN_FRONTEND=noninteractive apt-get update
bgstack15