Skip to content

Commit

Permalink
Fix yml CircleCI-Public#15 [semver:patch] (CircleCI-Public#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyTite authored Mar 25, 2022
1 parent 018364b commit c323d4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ executors:
python:
resource_class: small
docker:
- image: circleci/python:2.7-stretch
- image: cimg/python:3.10.2

commands:
azure-cli-tests:
Expand Down
8 changes: 6 additions & 2 deletions src/commands/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ steps:
if [[ $EUID == 0 ]]; then export SUDO=""; else export SUDO="sudo"; fi
$SUDO apt-get update && $SUDO apt-get -qqy install apt-transport-https
# https://github.com/CircleCI-Public/azure-cli-orb/issues/15
# https://manpages.debian.org/unstable/apt/apt-get.8.en.html
$SUDO apt-get --allow-releaseinfo-change-suite update && $SUDO apt-get -qqy install apt-transport-https
if [[ $(command -v lsb_release) == "" ]]; then
echo "Installing lsb_release"
Expand All @@ -43,7 +45,9 @@ steps:
# Update and install the Azure CLI
$SUDO apt-get update
# https://github.com/CircleCI-Public/azure-cli-orb/issues/15
# https://manpages.debian.org/unstable/apt/apt-get.8.en.html
$SUDO apt-get --allow-releaseinfo-change-suite update
$SUDO apt-get -qqy install \
ca-certificates \
azure-cli
Expand Down

0 comments on commit c323d4b

Please sign in to comment.