Skip to content

Commit f68fa8d

Browse files
committedJan 14, 2015
Merge pull request #22 from retronym/admin/publish-settings.sbt
Fix type in system property access
2 parents 2eb4d9a + ed3d813 commit f68fa8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎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)
Please sign in to comment.