self-ci/rust/build.sh

8 lines
123 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
for TARGET in ${BUILD_TARGETS:-x86_64-unknown-linux-musl}
do
TARGET="$TARGET" "$@"
done