We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80dcb3 commit c4dc1abCopy full SHA for c4dc1ab
1 file changed
src/base/.devcontainer/scripts/install_aws_sam_cli.sh
@@ -129,9 +129,8 @@ install() {
129
curl -fsSL "${scriptUrl}" -o "${scriptZipFile}"
130
curl -fsSL "${scriptUrl}.sig" -o "${scriptSigFile}"
131
132
- verify_aws_sam_cli_gpg_signature "$scriptZipFile" "$scriptSigFile"
133
- if (( $? > 0 )); then
134
- echo "Could not verify GPG signature of AWS CLI install script. Make sure you provided a valid version."
+ if ! verify_aws_sam_cli_gpg_signature "$scriptZipFile" "$scriptSigFile"; then
+ echo "Could not verify GPG signature of AWS SAM CLI install script. Make sure you provided a valid version."
135
exit 1
136
fi
137
echo "GPG signature of AWS SAM CLI install script verified successfully. Installing..."
0 commit comments