HXProject: null check for keystore.path
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user