sonatype / install4j-support

Install4j Support
http://sonatype.github.io/install4j-support/
11 stars 11 forks source link

macKeystorePassword not getting set correctly in CompileMojo.java #7

Closed collinl closed 12 years ago

collinl commented 12 years ago

macKeystorePassword not getting set correctly in CompileMojo.java

It looks like the check is looking for winKeystorePassword to not be null instead of macKeystorePassword . . .

This is what the code looks like currently for setting the keystore values:

if (winKeystorePassword != null) {
        task.createArg().setValue("--win-keystore-password");
        task.createArg().setValue(winKeystorePassword);
    }

    if (winKeystorePassword != null) {
        task.createArg().setValue("--mac-keystore-password");
        task.createArg().setValue(macKeystorePassword);
    }
jdillon commented 12 years ago

thx, fixed in c26c49971b4a59de7bd268c114b089071506b0bc