Skip to content

Commit 5e542a9

Browse files
committed
increase git hash call timeout
1 parent ad9c92a commit 5e542a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def getDevelopmentVersion() {
1515
def error = new StringBuilder()
1616
def gitShortHash = 'git rev-parse --short HEAD'.execute()
1717
gitShortHash.consumeProcessOutput(output, error)
18-
gitShortHash.waitForOrKill(2000)
18+
gitShortHash.waitForOrKill(10000)
1919
def gitHash = output.toString().trim()
2020
if (gitHash.isEmpty()) {
2121
println "git hash is empty: error: ${error.toString()}"

0 commit comments

Comments
 (0)