diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-02-15 14:58:47 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-02-15 14:58:47 +0100 |
commit | 99a29f40dffe699bd20161440b3840474d0a6acb (patch) | |
tree | 54af6a04573fe8fbe2e5cf0a1335f2559d0a49e2 | |
parent | 6f9f5404519877d89e225ca1dc00a8e29ff6ba0f (diff) | |
download | glutin-99a29f40dffe699bd20161440b3840474d0a6acb.tar.gz glutin-99a29f40dffe699bd20161440b3840474d0a6acb.zip |
Fix .travis.yml indentation
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index a9ad5b4..254ff7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,15 +19,15 @@ os: after_success: -| - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - cargo doc --features "window headless" && - echo '<meta http-equiv=refresh content=0;url=glutin/index.html>' > target/doc/index.html && - sudo pip install ghp-import && - ghp-import -n target/doc && - git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages + [ $TRAVIS_BRANCH = master ] && + [ $TRAVIS_PULL_REQUEST = false ] && + cargo doc --features "window headless" && + echo '<meta http-equiv=refresh content=0;url=glutin/index.html>' > target/doc/index.html && + sudo pip install ghp-import && + ghp-import -n target/doc && + git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages - | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - patch Cargo.toml < preupload.patch && - cargo publish --token ${CRATESIO_TOKEN} + [ $TRAVIS_BRANCH = master ] && + [ $TRAVIS_PULL_REQUEST = false ] && + patch Cargo.toml < preupload.patch && + cargo publish --token ${CRATESIO_TOKEN} |