about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-04-28 08:30:34 -0700
committerEric Huss <eric@huss.org>2023-04-28 08:30:34 -0700
commitdd6314f96cbe9057572dfd8b49e31e113eebe42f (patch)
tree87621cbba05700114b3d523ecfd232261d8b3d65 /src
parent43a78029b4f4d92978b8fde0a677ea300b113c41 (diff)
downloadrust-dd6314f96cbe9057572dfd8b49e31e113eebe42f.tar.gz
rust-dd6314f96cbe9057572dfd8b49e31e113eebe42f.zip
Update awscli
Diffstat (limited to 'src')
-rwxr-xr-xsrc/ci/scripts/install-awscli.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ci/scripts/install-awscli.sh b/src/ci/scripts/install-awscli.sh
index 3d8f0de7a39..aa62407eaea 100755
--- a/src/ci/scripts/install-awscli.sh
+++ b/src/ci/scripts/install-awscli.sh
@@ -10,15 +10,14 @@
 #
 # Before compressing please make sure all the wheels end with `-none-any.whl`.
 # If that's not the case you'll need to remove the non-cross-platform ones and
-# replace them with the .tar.gz downloaded from https://pypi.org. Also make
-# sure it's possible to call this script with both Python 2 and Python 3.
+# replace them with the .tar.gz downloaded from https://pypi.org.
 
 set -euo pipefail
 IFS=$'\n\t'
 
 source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
 
-MIRROR="${MIRRORS_BASE}/2019-07-27-awscli.tar"
+MIRROR="${MIRRORS_BASE}/2023-04-28-awscli.tar"
 DEPS_DIR="/tmp/awscli-deps"
 
 pip="pip"
@@ -29,6 +28,8 @@ if isLinux; then
 
     sudo apt-get install -y python3-setuptools python3-wheel
     ciCommandAddPath "${HOME}/.local/bin"
+elif isMacOS; then
+    pip="pip3"
 fi
 
 mkdir -p "${DEPS_DIR}"