Skip to content

Commit f63b63d

Browse files
committed
Fix bash syntax error
1 parent 311921a commit f63b63d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

heroku_ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if [ "$HEROKU_TEST_RUN_BRANCH" != "master" ] &&\
3434
pr=`python scripts/has_open_pr.py "$HEROKU_TEST_RUN_BRANCH"`
3535
git log -n 1 | grep '\[run CumulusCI-Test\]' > /dev/null
3636
exit_status=$?
37-
if [ "$pr" == ""] && [ "$exit_status" != "0"]; then
37+
if [ "$pr" == "" ] && [ "$exit_status" != "0"]; then
3838
# If there is not an open PR, don't run the CumulusCI-Test flows
3939
coveralls
4040
exit $failed

0 commit comments

Comments
 (0)