mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
fix bash comparison
This commit is contained in:
parent
da9c6a714e
commit
e9a83947bc
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ main() {
|
||||||
mkdir -p ci/builds
|
mkdir -p ci/builds
|
||||||
|
|
||||||
if [ $T = x86_64-unknown-linux-gnu ]; then
|
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
|
# test on a fixed version (MSRV) to avoid problems with changes in rustc diagnostics
|
||||||
# compile-fail tests
|
# compile-fail tests
|
||||||
cargo test --test single --target $T
|
cargo test --test single --target $T
|
||||||
|
|
Loading…
Reference in a new issue