diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-02-05 12:26:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 12:26:10 +0100 |
| commit | 2383cd4b2d820f968a57f9750bf4b4471a655835 (patch) | |
| tree | e9bba0f418752619839855a313c04e962f2d2868 /src/ci | |
| parent | 08d8fc14beef6708f04cafda6cd99425cf145b04 (diff) | |
| parent | 573f1c059fe290d719fc444e3a3316f6954af578 (diff) | |
| download | rust-2383cd4b2d820f968a57f9750bf4b4471a655835.tar.gz rust-2383cd4b2d820f968a57f9750bf4b4471a655835.zip | |
Rollup merge of #81781 - m-ou-se:fix-ci, r=pietroalbini
Fix `install-awscli.sh` error in CI This fixes the `install-awscli.sh` error about missing `'bdist_wheel'`.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/scripts/install-awscli.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/scripts/install-awscli.sh b/src/ci/scripts/install-awscli.sh index f9b759fe343..3d8f0de7a39 100755 --- a/src/ci/scripts/install-awscli.sh +++ b/src/ci/scripts/install-awscli.sh @@ -27,7 +27,7 @@ if isLinux; then pip="pip3" pipflags="--user" - sudo apt-get install -y python3-setuptools + sudo apt-get install -y python3-setuptools python3-wheel ciCommandAddPath "${HOME}/.local/bin" fi |
