mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
17 lines
282 B
Bash
Executable File
17 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. $(dirname $0)/util
|
|
set -eu
|
|
|
|
: ${TARGETPLATFORM=$CLI_PLATFORM}
|
|
|
|
platformFlag=""
|
|
if [ -n "$TARGETPLATFORM" ]; then
|
|
platformFlag="--platform $TARGETPLATFORM"
|
|
fi
|
|
|
|
buildxCmd build $platformFlag \
|
|
--target "binaries" \
|
|
--output "type=local,dest=./bin/" \
|
|
.
|