Skip to content

Commit

Permalink
Temporary debug change to see what's failing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelo Vanzin committed Nov 2, 2018
1 parent 5601d16 commit 4152c76
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ object ProcessUtils extends Logging {
})
assert(proc.waitFor(timeout, TimeUnit.SECONDS),
s"Timed out while executing ${fullCommand.mkString(" ")}")
assert(proc.exitValue == 0, s"Failed to execute ${fullCommand.mkString(" ")}")
assert(proc.exitValue == 0,
s"Failed to execute ${fullCommand.mkString(" ")}:\n${outputLines.mkString("\n")}")
outputLines
}
}

0 comments on commit 4152c76

Please sign in to comment.