Merge pull request #5709 from bacongobbler/fix-deploy-script

fix(circle): lsb_release does not exist in linuxkit images
pull/5717/head
Matthew Fisher 6 years ago committed by GitHub
commit 02e9a6493d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,11 +36,11 @@ else
fi fi
echo "Installing Azure CLI" echo "Installing Azure CLI"
AZURE_REPO=$(lsb_release -cs) echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ stretch main" | sudo tee /etc/apt/sources.list.d/azure-cli.list
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 | sudo apt-key add
curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add sudo apt install apt-transport-https
apt install apt-transport-https sudo apt update
apt update && apt install azure-cli sudo apt install azure-cli
echo "Building helm binaries" echo "Building helm binaries"

Loading…
Cancel
Save