Only run sync on cron

This commit is contained in:
Brandon Keepers
2017-09-09 12:06:12 -05:00
parent e49fc83788
commit ced5690725

View File

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