From 8aa0063befd9c380a4660f0f9ed464125b270ad1 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Wed, 10 Feb 2021 11:43:36 -0800 Subject: [PATCH] Updated collect_all_artifacts.sh to avoid installing apt-transport-https The installation of apt-transport-https is failing and causing this script to exit early. I suspect the package is no longer needed since recent versions have moved it into the apt package, so this change updates the script to stop trying to install apt-transport-https. --- kokoro/release/collect_all_artifacts.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/kokoro/release/collect_all_artifacts.sh b/kokoro/release/collect_all_artifacts.sh index 8f6e9db9a0..56f9eaeb19 100755 --- a/kokoro/release/collect_all_artifacts.sh +++ b/kokoro/release/collect_all_artifacts.sh @@ -49,7 +49,6 @@ cp ${INPUT_ARTIFACTS_DIR}/build64/src/protoc protoc/macosx_x64/protoc # Install nuget (will also install mono) # TODO(jtattermusch): use "mono:5.14" docker image instead so we don't have to apt-get install sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF -sudo apt install apt-transport-https echo "deb https://download.mono-project.com/repo/ubuntu stable-trusty main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list sudo apt update sudo apt-get install -y nuget