moparisthebest
9fa6cca726
Some checks reported errors
moparisthebest/self-ci/pipeline/head Something is wrong with the build of this commit
8 lines
123 B
Bash
Executable File
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
|