mirror of
https://github.com/sharkdp/bat.git
synced 2025-08-18 03:51:14 +02:00
Enabled build target aarch64-unknown-linux-gnu for arm64 architecture
This commit is contained in:
committed by
David Peter
parent
d6c8fee044
commit
1b6df8a480
@@ -6,7 +6,7 @@ set -ex
|
||||
cargo build --target "$TARGET" --verbose
|
||||
|
||||
# We cannot run arm executables on linux
|
||||
if [[ $TARGET != arm-unknown-linux-gnueabihf ]]; then
|
||||
if [[ $TARGET != arm-unknown-linux-gnueabihf ]] && [[ $TARGET != aarch64-unknown-linux-gnu ]]; then
|
||||
cargo test --target "$TARGET" --verbose
|
||||
|
||||
# Run 'bat' on its own source code and the README
|
||||
|
Reference in New Issue
Block a user