Skip to content

Commit

Permalink
wip: fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Aug 30, 2024
1 parent 42e3159 commit 03df262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
BP=$(forge blueprint dump .)
AWS=$(echo "$BP" | jq -r .ci.providers.aws)
if [[ "$AWS" -ne "null" ]]; then
if [[ "$AWS" != "null" ]]; then
AWS_REGION=$(echo "$BP" | jq -r .ci.providers.aws.region)
AWS_ROLE=$(echo "$BP" | jq -r .ci.providers.aws.role)
fi
Expand Down

0 comments on commit 03df262

Please sign in to comment.