diff options
| author | Alexander Færøy | 2014-12-18 19:42:33 +0100 |
|---|---|---|
| committer | Alexander Færøy | 2014-12-18 19:42:33 +0100 |
| commit | 34671fb32b35557668474c4bbb2a703f51b061a9 (patch) | |
| tree | b97ed146fe05662891b11d991987c42c03cc9bce | |
| parent | 70117a316df4e80c6f867b9e30c4f40e99b02aad (diff) | |
| parent | a6e40b8e2c6215175b150845e16b34105300f728 (diff) | |
| download | scripts.irssi.org-34671fb32b35557668474c4bbb2a703f51b061a9.tar.bz2 | |
Merge pull request #98 from ailin-nemui/gh-pages
Explicitly remove the login token from environment
| -rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 64d0fcb..1c69a58 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,21 +20,21 @@ before_install: _testing/config.yml` - | if [ $TRAVIS_PULL_REQUEST = false ] && [ $USE_ARTEFACTS_CACHE = yes ] && [ $EXTRACT_TEST_ARTEFACTS = yes ]; then - ./_testing/travis/load-old-artefacts.zsh + env -u REPO_LOGIN_TOKEN ./_testing/travis/load-old-artefacts.zsh fi -- ./_testing/travis/autoinstall-perl-prereqs.zsh +- env -u REPO_LOGIN_TOKEN ./_testing/travis/autoinstall-perl-prereqs.zsh install: - true before_script: -- ./_testing/run-test.zsh +- env -u REPO_LOGIN_TOKEN ./_testing/run-test.zsh - | if [ $TRAVIS_PULL_REQUEST != false ]; then git diff --stat $TRAVIS_BRANCH fi script: -- ./_testing/report-test.zsh +- env -u REPO_LOGIN_TOKEN ./_testing/report-test.zsh after_script: -- ./_testing/travis/show-failures.zsh +- env -u REPO_LOGIN_TOKEN ./_testing/travis/show-failures.zsh - | if [ $TRAVIS_PULL_REQUEST = false ] && $TRAVIS_SECURE_ENV_VARS; then perl ./_testing/travis/update-scripts-yaml.pl |
