self-ci/rust/build.sh

8 lines
123 B
Bash
Raw Normal View History

2020-11-21 21:31:34 -05:00
#!/bin/bash
set -euo pipefail
for TARGET in ${BUILD_TARGETS:-x86_64-unknown-linux-musl}
do
TARGET="$TARGET" "$@"
done