mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 14:57:59 +00:00
1d1eefdb7b
This is a workaround for #498. See issue for details. closes #498
11 lines
265 B
Bash
Executable file
Vendored
11 lines
265 B
Bash
Executable file
Vendored
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Incorporate TARGET env var to the build and test process
|
|
cargo build --target "$TARGET" --verbose
|
|
|
|
# We cannot run arm executables on linux
|
|
if [[ $TARGET != arm-unknown-linux-* ]]; then
|
|
cargo test --target "$TARGET" --verbose
|
|
fi
|