We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da8924 commit c8fa487Copy full SHA for c8fa487
scripts/evergreen/setup_aws.sh
@@ -48,14 +48,8 @@ install_aws_cli_pip() {
48
return 1
49
fi
50
51
- # Check if AWS CLI exists and works before installing
52
- if command -v aws &> /dev/null && aws --version &> /dev/null 2>&1; then
53
- echo "AWS CLI is already installed and working"
54
- return 0
55
- fi
56
-
57
echo "Installing AWS CLI using pip3..."
58
- pip3 install --user awscli
+ pip3 install --user --force-reinstall awscli
59
60
# Add ~/.local/bin to PATH if not already there (where pip --user installs)
61
if [[ ":${PATH}:" != *":${HOME}/.local/bin:"* ]]; then
0 commit comments