mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import os, sys
 | 
						|
 | 
						|
path = os.path.join("@DOCDIR@","sccs-info")
 | 
						|
try: text = file(path).read(-1)
 | 
						|
except IOError,e:
 | 
						|
	if e.errno == 2:
 | 
						|
		sys.stderr.write("error: SCCS info file %r cannot be found\n"%path)
 | 
						|
		sys.exit(1)
 | 
						|
	else: raise
 | 
						|
lines = [ s.strip() for s in text.split("\n") if s.startswith('Git Revision: ') ]
 | 
						|
print " ".join( [ s[14:] for s in lines ] ) |