mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-03-29 07:48:07 +08:00
7 lines
104 B
Bash
Executable File
7 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$TRAVIS_EVENT_TYPE" in
|
|
cron|pr ) script/remote-sync;;
|
|
* ) script/test;;
|
|
esac
|