Skip to content

Commit da6c101

Browse files
[autofix.ci] apply automated fixes
1 parent a62ace5 commit da6c101

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)