mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	 7b2f7191f5
			
		
	
	
		7b2f7191f5
		
	
	
	
	
		
			
			* Added try-catch block in getBuildVersion function in gitutils.gradle file. * Formatting fix * Add comment
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			690 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			690 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| ext.getBuildVersion = { ->
 | |
|     // Short-term fix for #1157. Should ideally look into why method is failing.
 | |
|     try {
 | |
|         def stdout = new ByteArrayOutputStream()
 | |
|         exec {
 | |
|             commandLine 'git' , 'rev-parse' , '--short' , 'HEAD'
 | |
|             standardOutput = stdout
 | |
|         }
 | |
|         return stdout.toString().trim()
 | |
|     } catch (ignored) {
 | |
|         return null
 | |
|     }
 | |
| }
 | |
| 
 | |
| ext.getBranchName = { ->
 | |
|     try {
 | |
|         def stdOut = new ByteArrayOutputStream()
 | |
|         exec {
 | |
|             commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
 | |
|             standardOutput = stdOut
 | |
|         }
 | |
|         return stdOut.toString().trim()
 | |
|     } catch (ignored) {
 | |
|         return null
 | |
|     }
 | |
| }
 |