From 7495a56518a1d0bf2ea1608cbab46bb98416c8bf Mon Sep 17 00:00:00 2001 From: Adam Kobus Date: Fri, 22 Jul 2016 12:08:10 +0200 Subject: [PATCH] ST-151 Fixed keystorePropPath param --- .../impl/android/commands/CreateKeyStoreExtCommand.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/groovy/com/infullmobile/toolkit/impl/android/commands/CreateKeyStoreExtCommand.groovy b/src/main/groovy/com/infullmobile/toolkit/impl/android/commands/CreateKeyStoreExtCommand.groovy index ae6dac1..52ce999 100644 --- a/src/main/groovy/com/infullmobile/toolkit/impl/android/commands/CreateKeyStoreExtCommand.groovy +++ b/src/main/groovy/com/infullmobile/toolkit/impl/android/commands/CreateKeyStoreExtCommand.groovy @@ -18,7 +18,8 @@ class CreateKeyStoreExtCommand extends IConfigCommand { @Override void performCommand(IProjectConfigurator configurator) { configuredProject.ext.createSigningConfigFromFile = { String defaultPath -> - def String path = configuredProject.hasProperty('keystorePropPath') ? keystorePropPath : defaultPath; + def String path = configuredProject.hasProperty('keystorePropPath') ? + configuredProject.keystorePropPath : defaultPath; println ">> Keystore properties path is set to $path"; def propFile = new File(path); def propDir = propFile.getParentFile().getAbsolutePath();