Skip to content

Commit fd32325

Browse files
authored
Fix occasional error in release script (#1261)
1 parent a57fbb9 commit fd32325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ echo " Status: $(jq -r .status < run.json)"
8282
echo " Artifacts URL: $(jq -r .artifacts_url < run.json)"
8383
echo ""
8484

85-
if [ $(jq -r .status < run.json) != completed ]; then
85+
if [ "$(jq -r .status < run.json)" != "completed" ]; then
8686
echo "Seems like CI is still running. Not releasing."
8787
exit 0
8888
fi

0 commit comments

Comments
 (0)