Skip to content

Commit ed3d813

Browse files
committed
Fix type in system property access
1 parent 2eb4d9a commit ed3d813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: admin/publish-settings.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
pgpPassphrase := Some(sys.prop("PGP_PASSPHRASE").toArray)
1+
pgpPassphrase := Some(sys.props("PGP_PASSPHRASE").toArray)
22

33
pgpPublicRing := file("admin/pubring.asc")
44

55
pgpSecretRing := file("admin/secring.asc")
66

7-
credentials += Credentials("Sonatype Nexus Repository Manager", "oss.sonatype.org", sys.prop("SONA_USER"), sys.prop("SONA_PASS"))
7+
credentials += Credentials("Sonatype Nexus Repository Manager", "oss.sonatype.org", sys.props("SONA_USER"), sys.props("SONA_PASS"))

0 commit comments

Comments
 (0)