Skip to content

Commit 9c52b42

Browse files
committed
Merge branch 'consolidate-jvm-subprocess-and-inprocess-functions' of github.com:sake92/mill into consolidate-jvm-subprocess-and-inprocess-functions
2 parents 6b3db70 + da6c101 commit 9c52b42

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scalalib/src/mill/scalalib/publish/SonatypeHelpers.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,15 @@ object SonatypeHelpers {
5252
val fileName = file.toString
5353
val command = "gpg" +: args :+ fileName
5454

55-
val processResult = os.call(command, env, workspace,
55+
val processResult = os.call(
56+
command,
57+
env,
58+
workspace,
5659
stdin = os.Inherit,
5760
stdout = os.Inherit,
5861
stderr = os.Inherit,
59-
check = false)
62+
check = false
63+
)
6064
mill.util.ProcessUtil.toResult(processResult).getOrThrow
6165
os.Path(fileName + ".asc")
6266
}

0 commit comments

Comments
 (0)