ci: Fix missing equals sign (#218)
This commit is contained in:
parent
22278d7d75
commit
f5f37f7f0a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue