HXProject: null check for keystore.path

This commit is contained in:
Josh Tynjala
2022-12-30 22:07:44 -08:00
parent 923ebf789a
commit 3ea3f90842

View File

@@ -1277,8 +1277,11 @@ class HXProject extends Script
context.PRELOADER_NAME = app.preloader; context.PRELOADER_NAME = app.preloader;
if (keystore != null) if (keystore != null)
{
if (keystore.path != null)
{ {
context.KEY_STORE = Path.tryFullPath(keystore.path); context.KEY_STORE = Path.tryFullPath(keystore.path);
}
if (keystore.password != null) if (keystore.password != null)
{ {