We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4dcd0 commit f807323Copy full SHA for f807323
ct.sh
@@ -38,12 +38,12 @@ if [ "$TRAVIS_RUST_VERSION" == "stable" ] || [ "$TRAVIS_RUST_VERSION" == "beta"
38
cargo test --features dsa --target $TARGET
39
40
# If zlib is installed, test the zlib feature
41
- if [ -n $ZLIB_INSTALLED ]; then
+ if [ -n "$ZLIB_INSTALLED" ]; then
42
cargo test --features zlib --target $TARGET
43
fi
44
45
# If AES-NI is supported, test the feature
46
- if [ -n $AES_NI_SUPPORT ]; then
+ if [ -n "$AES_NI_SUPPORT" ]; then
47
cargo test --features force_aesni_support --target $TARGET
48
49
else
0 commit comments