mirror of
				https://github.com/docker/compose.git
				synced 2025-11-04 13:44:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
#
 | 
						|
# Write the current commit sha to the file GITSHA. This file is included in
 | 
						|
# packaging so that `docker-compose version` can include the git sha.
 | 
						|
#
 | 
						|
set -e
 | 
						|
git rev-parse --short HEAD > compose/GITSHA
 |