Fix cargo install commands.

This commit is contained in:
Andreas Fackler 2019-08-23 10:41:21 +02:00 committed by Andreas Fackler
parent c146634686
commit 66033a9f7f
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ before_install:
openssl aes-256-cbc -K $encrypted_ab99677a831c_key -iv $encrypted_ab99677a831c_iv -in deploy_rsa.enc -out deploy_rsa -d;
fi
- rustup component add --toolchain=$TRAVIS_RUST_VERSION rustfmt-preview clippy-preview
- cargo deadlinks --version || cargo install cargo-deadlinks
- cargo audit --version || cargo install cargo-audit
- cargo deadlinks --version || cargo install cargo-deadlinks -f
- cargo audit --version || cargo install cargo-audit -f
# after_failure:
# # Outputs the syslog after a failed build, e.g. to debug `SIGILL` occurrences.
# # Unfortunately this is likely to disable container-based travis images,