mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-01 04:04:26 +01:00
9 lines
154 B
Bash
9 lines
154 B
Bash
|
#!/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" $@
|