Saturday, 7 September 2013

Setting PGP passphrase in SBT

Setting PGP passphrase in SBT

This page suggests I can add the following to a file in ~/.sbt/*.sbt
pgpPassphrase := Some(Array('a', 'b', 'c'))
When I do I get the error
~/.sbt/pgp.sbt:1: error: reassignment to val
pgpPassphrase := Some(Array('a', 'b', 'c'))
^
I'm not sure how (or if I can) override a setting in SBT.

No comments:

Post a Comment