mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 01:53:42 +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/" \
 | 
						|
  .
 |