From 70a3df49d702e23ad29367783a5655350be90265 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Wed, 12 Oct 2022 14:56:34 -0400 Subject: [PATCH] Updating the deb location for azure cli This update moves to ubuntu jammy. The name moves off of debian version names because jammy is based on bookworm and azure cli does not have debian package support with bookworm This is an update to the previous update for this because the CircleCI environment is ubuntu 20.04 but the container this is running is has 22.04 as the ubuntu version. Updating the in container to 22.04 (jammy). Signed-off-by: Matt Farina --- .circleci/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/deploy.sh b/.circleci/deploy.sh index 295c1d476..c886d46ce 100755 --- a/.circleci/deploy.sh +++ b/.circleci/deploy.sh @@ -34,7 +34,7 @@ else fi echo "Installing Azure CLI" -echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ bullseye main" | sudo tee /etc/apt/sources.list.d/azure-cli.list +echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ jammy main" | sudo tee /etc/apt/sources.list.d/azure-cli.list curl -L https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add sudo apt install apt-transport-https sudo apt update