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