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 README says:
This is wrong on two counts:
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
.