Skip to content

Commit

Permalink
Fixed if statement syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
hg-jarlinghaus committed Oct 29, 2020
1 parent dd72cf6 commit 7132702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ ${output}

echo "${payload}" | curl -s -S -H "Authorization: token ${GITHUB_TOKEN}" --header "Content-Type: application/json" --data @- "${commentsURL}" > /dev/null
fi
if ["$exitCode" == "1"]; then
if [ "$exitCode" == "1" ]; then
exit 1
fi
}
Expand Down

0 comments on commit 7132702

Please sign in to comment.