Skip to content

Commit

Permalink
environment keystore pass overrides buildscript
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Feb 23, 2014
1 parent 31760e8 commit 36bae9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -168,7 +168,7 @@ if (!project.hasProperty("sftp_key"))
ext.sftp_key = "";
if (!project.hasProperty("keystore_user_password")) // keystore user pass
ext.keystore_user_password = "";
if (System.getenv().KSK_PW != null && project.keystore_user_password != "")
if (System.getenv().KSK_PW != null)
ext.keystore_user_password =System.getenv().KSK_PW;
task("signJar", dependsOn: "build")
{
Expand Down

0 comments on commit 36bae9b

Please sign in to comment.