mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 09:22:25 -05:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|  | #!/bin/sh
 | ||
|  | 
 | ||
|  | set -eu | ||
|  | 
 | ||
|  | export COMMIT=$(git rev-list -1 HEAD) | ||
|  | export VERSION=$(cat ./version) | ||
|  | 
 | ||
|  | go build -ldflags="-X 'main.Commit=$COMMIT' -X 'main.Version=$VERSION'" ./cmd/gotosocial |