Skip to content

Commit

Permalink
making default gpg args private
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrapyre committed May 25, 2024
1 parent f3d518b commit 439682e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scalalib/src/mill/scalalib/PublishModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ trait PublishModule extends JavaModule { outer =>

object PublishModule extends ExternalModule {
val defaultGpgArgs: Seq[String] = Seq("--batch", "--yes", "-a", "-b")
val defaultStringGpgArgs: String = defaultGpgArgs.mkString(",")
private[mill] val defaultStringGpgArgs: String = defaultGpgArgs.mkString(",")

case class PublishData(meta: Artifact, payload: Seq[(PathRef, String)]) {

Expand Down

0 comments on commit 439682e

Please sign in to comment.