Skip to content

Commit

Permalink
fix bash comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Nov 7, 2019
1 parent da9c6a7 commit e9a8394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ main() {
mkdir -p ci/builds

if [ $T = x86_64-unknown-linux-gnu ]; then
if [ $TRAVIS_RUST_VERSION == 1.*.* ]; then
if [[ $TRAVIS_RUST_VERSION == 1.*.* ]]; then
# test on a fixed version (MSRV) to avoid problems with changes in rustc diagnostics
# compile-fail tests
cargo test --test single --target $T
Expand Down

0 comments on commit e9a8394

Please sign in to comment.