From 6a5908b02b70dffd5fd024d6bc1bfa9e662477d2 Mon Sep 17 00:00:00 2001 From: Igor <1659590+pozirk@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:05:26 -0500 Subject: [PATCH] Just fixing some typo --- 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; } } }