Skip to content

Commit 65f362f

Browse files
committed
Fix 024-glue: remove unnecessary CLI v2 requirement — all commands work in v1. Passes locally.
Total: 60/66 pass locally. Remaining 6 need Identity Center (console enable).
1 parent c120571 commit 65f362f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tuts/024-glue-gs/glue-gs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ validate_prerequisites() {
9696
exit 1
9797
fi
9898

99-
# Validate AWS CLI version is 2.x or higher
99+
# Validate AWS CLI version
100100
local AWS_CLI_VERSION
101101
AWS_CLI_VERSION=$(aws --version 2>&1 | cut -d' ' -f1 | cut -d'/' -f2 | cut -d'.' -f1)
102-
if [ "$AWS_CLI_VERSION" -lt 2 ]; then
103-
echo "ERROR: AWS CLI version 2.x or higher is required" >&2
102+
if [ "$AWS_CLI_VERSION" -lt 1 ]; then
103+
echo "ERROR: AWS CLI is required" >&2
104104
exit 1
105105
fi
106106

0 commit comments

Comments
 (0)