mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-11-04 00:33:55 +01:00 
			
		
		
		
	* 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
 | 
						|
    }
 | 
						|
}
 |