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

@@ -1278,7 +1278,10 @@ class HXProject extends Script
if (keystore != null)
{
context.KEY_STORE = Path.tryFullPath(keystore.path);
if (keystore.path != null)
{
context.KEY_STORE = Path.tryFullPath(keystore.path);
}
if (keystore.password != null)
{