aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 01:06:34 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 01:06:34 +0100
commit814cca9f4a84f41f0900f7d67c66432334329652 (patch)
tree0492bc338bd3598ba5a22a69121f330015aac473 /binary_tarball
parentforgot an apt update (diff)
downloadlibrewolf-linux-814cca9f4a84f41f0900f7d67c66432334329652.tar.gz
librewolf-linux-814cca9f4a84f41f0900f7d67c66432334329652.tar.bz2
librewolf-linux-814cca9f4a84f41f0900f7d67c66432334329652.zip
get more output from apt update
Diffstat (limited to 'binary_tarball')
-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 7a63a8c..7033c97 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -15,5 +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 update
DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9
bgstack15