diff --git a/Alloy/tiapp.js b/Alloy/tiapp.js index 0f15181e6..b874dae83 100644 --- a/Alloy/tiapp.js +++ b/Alloy/tiapp.js @@ -44,7 +44,8 @@ function getSdkSelectVersion() { var homeDir = process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'], file = path.join(homeDir, '.titanium', 'config.json'); if (!fs.existsSync(file)) { - U.die('Titanium configuration file does not exist at "' + file + '"'); + //U.die('Titanium configuration file does not exist at "' + file + '"'); + return "" } var ticonfig = JSON.parse(fs.readFileSync(file, {encoding: 'utf8'})); return ticonfig.sdk.selected;