Skip to content

Commit

Permalink
just for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Oct 1, 2024
1 parent c04bab9 commit e7fe3f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Alloy/tiapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""

Check failure on line 48 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Strings must use singlequote

Check failure on line 48 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Missing semicolon

Check failure on line 48 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Strings must use singlequote

Check failure on line 48 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Missing semicolon
}
var ticonfig = JSON.parse(fs.readFileSync(file, {encoding: 'utf8'}));
return ticonfig.sdk.selected;
Expand Down

0 comments on commit e7fe3f1

Please sign in to comment.