Skip to content

Commit

Permalink
Fixing broken pull requests due to pw prompt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robpol86 committed Aug 4, 2016
1 parent 6f5d05d commit 9bca207
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ after_success:
- appveyor-artifacts -mi download
- coverage combine
- coveralls
- touch docs/key; chmod 600 docs/key # Secure before storing key data.
- openssl aes-256-cbc -K $encrypted_84aa143e748f_key -iv $encrypted_84aa143e748f_iv -in docs/key.enc -out docs/key -d
- eval `ssh-agent -s`; ssh-add docs/key
- eval "$(ssh-agent -s)"; touch docs/key; chmod 0600 docs/key
- openssl aes-256-cbc -d -K "$encrypted_84aa143e748f_key" -iv "$encrypted_84aa143e748f_iv" < docs/key.enc > docs/key
&& ssh-add docs/key
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
- git remote set-url origin "git@github.com:$TRAVIS_REPO_SLUG"
- export ${!TRAVIS*} # For commit messages.
- export ${!TRAVIS*}
- tox -e docsV

# Deploy.
Expand Down

0 comments on commit 9bca207

Please sign in to comment.