Skip to content

Commit

Permalink
gradle.plugin: GitFacade - increased timeout when running git diff
Browse files Browse the repository at this point in the history
  • Loading branch information
ratiud committed Jul 30, 2023
1 parent 8954a2c commit bcd21c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class GitFacade {
println("Running command '$commandString'")
def proc = command.execute([], absoluteGitRepoLocation)
proc.consumeProcessOutput(sout, serr)
proc.waitForOrKill(5000)
proc.waitForOrKill(60000)

def errorString = serr.toString()
if (errorString?.trim()) {
Expand Down

0 comments on commit bcd21c7

Please sign in to comment.