Skip to content

Commit

Permalink
fix: Remove test brackets from awscli check
Browse files Browse the repository at this point in the history
They were syntactically incorrect

Fixes: bee2437
Signed-off-by: Patrick Roy <[email protected]>
  • Loading branch information
roypat committed Sep 14, 2023
1 parent bee2437 commit d0983d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/devtool
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ cmd_distclean() {
}

ensure_ci_artifacts() {
if [ ! command -v aws >/dev/null ]; then
if ! command -v aws >/dev/null; then
die "AWS CLI not installed, which is required for downloading artifacts for integration tests."
fi

Expand Down

0 comments on commit d0983d4

Please sign in to comment.