mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-12 21:51:04 +01:00
8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -ex
|
|
|
|
# Build conduit for a specific target
|
|
cross/build.sh $@
|
|
|
|
# Test conduit for a specific target
|
|
cross test --target="$TARGET" $@
|