Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 3c5ba36

Browse files
committed
ci: fix if condition
1 parent 2e5ec33 commit 3c5ba36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ main() {
77
fi
88

99
# test that the functions don't contain invocations of `panic!`
10-
if [ $TRAVIS_RUST_VERSION ]; then
10+
if [ $TRAVIS_RUST_VERSION = nightly ]; then
1111
cross build --release --target $TARGET --example no-panic
1212
return
1313
fi

0 commit comments

Comments
 (0)