Skip to content

Commit f807323

Browse files
committed
Fixing bash conditionals.
1 parent 2e4dcd0 commit f807323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ct.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ if [ "$TRAVIS_RUST_VERSION" == "stable" ] || [ "$TRAVIS_RUST_VERSION" == "beta"
3838
cargo test --features dsa --target $TARGET
3939

4040
# If zlib is installed, test the zlib feature
41-
if [ -n $ZLIB_INSTALLED ]; then
41+
if [ -n "$ZLIB_INSTALLED" ]; then
4242
cargo test --features zlib --target $TARGET
4343
fi
4444

4545
# If AES-NI is supported, test the feature
46-
if [ -n $AES_NI_SUPPORT ]; then
46+
if [ -n "$AES_NI_SUPPORT" ]; then
4747
cargo test --features force_aesni_support --target $TARGET
4848
fi
4949
else

0 commit comments

Comments
 (0)