mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-17 10:48:18 -07: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" $@
|