Skip to content

Commit

Permalink
Updated build.gradle.
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyphillips committed May 28, 2020
1 parent ec68e64 commit c1d3c24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def getPassword(String currentUser, String keyChain) {
ignoreExitValue true
}
//noinspection GroovyAssignabilityCheck
stdout.toString().trim();
stdout.toString();
}

def releaseKeyAlias = "kisswallet";
Expand All @@ -150,7 +150,7 @@ if(Os.isFamily(Os.FAMILY_MAC) && hasReleaseStoreFile && pass == "") {

if ("assembleRelease" in gradle.startParameter.taskNames && hasReleaseStoreFile && pass == "") {
println "Enter keystore password:"
pass = System.in.newReader().readLine().trim()
pass = System.in.newReader().readLine()
if (pass == null) {
pass = ""
}
Expand Down

0 comments on commit c1d3c24

Please sign in to comment.