Skip to content

Commit

Permalink
ARROW-8107: [Packaging][APT] Use HTTPS for LLVM APT repository for De…
Browse files Browse the repository at this point in the history
…bian GNU/Linux stretch

Closes #6607 from kou/packaging-apt-stretch-https

Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
kou committed Mar 13, 2020
1 parent dba6f34 commit e36fad8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ RUN \
quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
apt-transport-https \
gnupg \
wget && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main" > \
echo "deb https://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main" > \
/etc/apt/sources.list.d/llvm.list && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
Expand Down

0 comments on commit e36fad8

Please sign in to comment.