ci: Fix missing equals sign (#218)

This commit is contained in:
Clement Tsang 2020-09-02 03:46:39 -04:00 committed by GitHub
parent 22278d7d75
commit f5f37f7f0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,7 +104,7 @@ script:
cargo clippy -- -D clippy::all
fi
- |
if [[ $TARGET = "armv7-unknown-linux-gnueabihf" ]]; then
if [[ $TARGET == "armv7-unknown-linux-gnueabihf" ]]; then
cargo build --verbose --target $TARGET
else
cargo test --verbose --target $TARGET