aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 00:56:54 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 00:56:54 +0100
commitc842430e3145bfbe383ae1cd4b108350c98f395d (patch)
tree5772e3f45243980a0a5696e8bda62d07b8e6e062
parentinstall clang on 16.04 (diff)
downloadlibrewolf-linux-c842430e3145bfbe383ae1cd4b108350c98f395d.tar.gz
librewolf-linux-c842430e3145bfbe383ae1cd4b108350c98f395d.tar.bz2
librewolf-linux-c842430e3145bfbe383ae1cd4b108350c98f395d.zip
forgot an apt update
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index fb49c1d..7a63a8c 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -15,4 +15,5 @@ DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common
sudo 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 -qq update;
DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9
bgstack15