Skip to content

Commit cd24930

Browse files
committed
wip: fixes syntax
1 parent 70b21d8 commit cd24930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forge/actions/setup/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ runs:
6767
USERNAME=$(echo "$SECRET" | jq -r .username)
6868
PASSWORD=$(echo "$SECRET" | jq -r .password)
6969
70-
if [[ "$USERNAME" == "null" || "$PASSWORD" == "null"]]; then
70+
if [[ "$USERNAME" == "null" || "$PASSWORD" == "null" ]]; then
7171
echo "Error: the docker provider secret must map secret values to 'username' and 'password'"
7272
exit 1
7373
fi

0 commit comments

Comments
 (0)