Update awscli

This commit is contained in:
Eric Huss 2023-04-28 08:30:34 -07:00
parent 43a78029b4
commit dd6314f96c

View File

@ -10,15 +10,14 @@
# #
# Before compressing please make sure all the wheels end with `-none-any.whl`. # 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 # 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 # replace them with the .tar.gz downloaded from https://pypi.org.
# sure it's possible to call this script with both Python 2 and Python 3.
set -euo pipefail set -euo pipefail
IFS=$'\n\t' IFS=$'\n\t'
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" 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" DEPS_DIR="/tmp/awscli-deps"
pip="pip" pip="pip"
@ -29,6 +28,8 @@ if isLinux; then
sudo apt-get install -y python3-setuptools python3-wheel sudo apt-get install -y python3-setuptools python3-wheel
ciCommandAddPath "${HOME}/.local/bin" ciCommandAddPath "${HOME}/.local/bin"
elif isMacOS; then
pip="pip3"
fi fi
mkdir -p "${DEPS_DIR}" mkdir -p "${DEPS_DIR}"