mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-09 01:35:52 +08:00
fix(travis): fix conditional check in before_install
This commit is contained in:
parent
16e2b6036b
commit
ff2e626037
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ matrix:
|
|||
env: NODE_VERSION=6.9 CC=clang CXX=clang++ PUBLISH_BUILD=true
|
||||
|
||||
before_install:
|
||||
- if [ "${TRAVIS_PULL_REQUEST}" = "false" && "${MIRROR}" = "false" ]; then
|
||||
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${MIRROR}" = "false" ]; then
|
||||
openssl aes-256-cbc -k "$DECRYPTION_PASSWORD" -in build/resources/ssh/nylas-n1-ci-ssh.openssl.enc -out nylas-n1-ci-ssh -d;
|
||||
mv nylas-n1-ci-ssh ~/.ssh/id_rsa;
|
||||
chmod 400 ~/.ssh/id_rsa;
|
||||
|
|
Loading…
Reference in a new issue