Get the event type right

This commit is contained in:
Brandon Keepers
2017-09-09 11:56:07 -05:00
parent 45de714d22
commit a722730fc2

View File

@@ -1,6 +1,6 @@
#!/bin/sh
case "$TRAVIS_EVENT_TYPE" in
cron|pr ) script/remote-sync;;
cron|pull_request ) script/remote-sync;;
* ) script/test;;
esac