From cb983057767d4c9d9c2824886c8aee6b2cc2be72 Mon Sep 17 00:00:00 2001 From: Igor <1659590+pozirk@users.noreply.github.com> Date: Tue, 7 Jan 2025 20:38:25 -0500 Subject: [PATCH] Probably a copy/paste mistake --- src/lime/tools/Keystore.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lime/tools/Keystore.hx b/src/lime/tools/Keystore.hx index 878ba70a6a..65a0a6f31a 100644 --- a/src/lime/tools/Keystore.hx +++ b/src/lime/tools/Keystore.hx @@ -26,9 +26,9 @@ class Keystore if (keystore != null) { if (keystore.path != null && keystore.path != "") path = keystore.path; - if (keystore.password != null) path = keystore.password; - if (keystore.alias != null) path = keystore.alias; - if (keystore.aliasPassword != null) path = keystore.aliasPassword; + if (keystore.password != null) password = keystore.password; + if (keystore.alias != null) alias = keystore.alias; + if (keystore.aliasPassword != null) aliasPassword = keystore.aliasPassword; } } }