From c498869a88dfda03eba25e7e7c4297582c869ae3 Mon Sep 17 00:00:00 2001 From: "Vladimir.Orlov" Date: Wed, 10 Sep 2014 10:05:29 +0400 Subject: [PATCH] removed WorkingDirectory form Info.plist. --- native/MacLauncher/Launcher.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/native/MacLauncher/Launcher.m b/native/MacLauncher/Launcher.m index 630cf741fdab..7e899f9da040 100644 --- a/native/MacLauncher/Launcher.m +++ b/native/MacLauncher/Launcher.m @@ -326,8 +326,8 @@ NSDictionary *parseProperties() { NSLog(@"Cannot chdir to working directory at %@", cwd); } } else { - NSLog(@"Info.plist is corrupted, Absent WorkingDirectory key."); - exit(-1); + NSString *dir = [[NSFileManager defaultManager] currentDirectoryPath]; + NSLog(@"WorkingDirectory is absent in Info.plist. Current Directory: %@", dir); } }