You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While setting the system property to 0 would indeed result in java.lang.Boolean.getBoolean("SBT_PGP_USE_GPG") returning false, the same would happen if it was set to 1. Boolean system properties should be set to either "false" or "true" to be properly parsed by java.lang.Boolean.getBoolean.
The text was updated successfully, but these errors were encountered:
The README says:
This is wrong on two counts:
sbt-pgp/sbt-pgp/src/main/scala/com/jsuereth/sbtpgp/PgpSettings.scala
Lines 22 to 25 in 90465fc
java.lang.Boolean.getBoolean("SBT_PGP_USE_GPG")
returningfalse
, the same would happen if it was set to 1. Boolean system properties should be set to either"false"
or"true"
to be properly parsed byjava.lang.Boolean.getBoolean
.The text was updated successfully, but these errors were encountered: