Only run sync on cron/pr

This commit is contained in:
Brandon Keepers
2017-09-09 11:51:13 -05:00
parent c6be154f3a
commit 45de714d22

View File

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