mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 08:03:43 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -eu -o pipefail
 | |
| 
 | |
| : "${DESTDIR=./bin/release}"
 | |
| 
 | |
| if [ ! -d "$DESTDIR" ]; then
 | |
|   exit 0
 | |
| fi
 | |
| 
 | |
| # checksums
 | |
| (
 | |
|   cd ${DESTDIR}
 | |
|   sha256sum -b buildx-* > ./checksums.txt
 | |
|   sed -i '/darwin/d' ./checksums.txt
 | |
|   sha256sum -c --strict checksums.txt
 | |
| )
 | 
