From 48cec416e8f112b1b6c676aa646002e0c58ab59d Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 9 May 2019 22:51:04 -0700 Subject: [PATCH] fix(circle): lsb_release does not exist in linuxkit images Signed-off-by: Matthew Fisher --- .circleci/deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/deploy.sh b/.circleci/deploy.sh index 9c4248bb1..598ef43c7 100755 --- a/.circleci/deploy.sh +++ b/.circleci/deploy.sh @@ -36,11 +36,11 @@ else fi echo "Installing Azure CLI" -AZURE_REPO=$(lsb_release -cs) -echo “deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZURE_REPO main” | tee /etc/apt/sources.list.d/azure-cli.list -curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add – -apt install apt-transport-https -apt update && apt install azure-cli +echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ stretch 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 +sudo apt install azure-cli echo "Building helm binaries"