We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc8f57 commit 6164dbbCopy full SHA for 6164dbb
main/util/src/mill/util/Jvm.scala
@@ -77,7 +77,7 @@ object Jvm {
77
shutdownGracePeriod: Long = 100,
78
destroyOnExit: Boolean = true,
79
check: Boolean = true
80
- ): CommandResult = {
+ )(implicit ctx: Ctx): CommandResult = {
81
val cp = cpPassingJarPath match {
82
case Some(passingJarPath) if classPath.nonEmpty =>
83
createClasspathPassingJar(passingJarPath, classPath.toSeq)
@@ -96,6 +96,10 @@ object Jvm {
96
97
if (cwd != null) os.makeDir.all(cwd)
98
99
+ ctx.log.debug(
100
+ s"Running ${commandArgs.map(arg => "'" + arg.replace("'", "'\"'\"'") + "'").mkString(" ")}"
101
+ )
102
+
103
val processResult = os.proc(commandArgs)
104
.call(
105
cwd = cwd,
0 commit comments