Merge pull request #11 from MetaDark/dont-update-nur-on-cron
Don't try to update NUR on cron jobs
This commit is contained in:
commit
34ebc37fc8
1 changed files with 1 additions and 1 deletions
|
@ -29,6 +29,6 @@ script:
|
|||
|
||||
after_success:
|
||||
- if [ -n "${CACHIX_CACHE}" ]; then nix-build ci.nix -A cacheOutputs | cachix push "${CACHIX_CACHE}"; fi
|
||||
- if [ "false" = "${TRAVIS_PULL_REQUEST}" -a "master" = "${TRAVIS_BRANCH}" ]; then
|
||||
- if [ "cron" != "${TRAVIS_EVENT_TYPE}" -a "false" = "${TRAVIS_PULL_REQUEST}" -a "master" = "${TRAVIS_BRANCH}" ]; then
|
||||
curl -XPOST "https://nur-update.herokuapp.com/update?repo=${NUR_REPO}"; fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue