mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
299 B
13 lines
299 B
#!/usr/bin/env bash |
|
|
|
if [ ! -z "$TRAVIS_EVENT_TYPE" ] && [ "$TRAVIS_EVENT_TYPE" != "cron" ] |
|
then |
|
echo "Skipping publishing in a non-cron build" |
|
exit 0 |
|
fi |
|
|
|
if [ ! -z "$TRAVIS_PULL_REQUEST" ] && [ "$TRAVIS_PULL_REQUEST" != "false" ] |
|
then |
|
echo "Skipping publishing in a Pull Request" |
|
exit 0 |
|
fi
|
|
|