Skip to content

Commit

Permalink
NIT remove Scala CLI hardcoded reference
Browse files Browse the repository at this point in the history
  • Loading branch information
MaciejG604 committed Mar 7, 2023
1 parent d9cf954 commit 3088281
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -143,7 +143,7 @@ final case class PgpSecretKeyCheck(
"publish.secretKey",
configKeys = Seq(Keys.pgpSecretKey.fullName),
extraMessage =
", and specify publish.secretKeyPassword / --secret-key-password if needed." +
"also specify publish.secretKeyPassword / --secret-key-password if needed." +
(if (options.publishParams.setupCi)
" Alternatively, pass --random-secret-key"
else "")
Expand Down
Expand Up @@ -17,7 +17,7 @@ final class MissingPublishOptionError(
val configPart =
if (configKeys.isEmpty) ""
else
s" or by setting ${configKeys.mkString(", ")} in the Scala CLI configuration"
s" or by setting ${configKeys.mkString(", ")} in the configuration"
val extraPart =
if (extraMessage.isEmpty) "" else s", ${extraMessage.dropWhile(_.isWhitespace)}"

Expand Down

0 comments on commit 3088281

Please sign in to comment.