Skip to content

Commit

Permalink
deleted cli version and fixed windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
tonylukasavage committed Apr 25, 2012
1 parent 98e7130 commit e70a293
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/support/constants.js
@@ -1,6 +1,7 @@
var path = require('path');

module.exports = {
// General titanium level constants
TITANIUM_CLI_VERSION: '0.1.0',
TITANIUM_CONFIG_FILE: 'cli.json',
TITANIUM_TARGETS: ['ios', 'android', 'mobileweb', 'blackberry'],
TITANIUM_PLATFORMS: ['darwin', 'win32', 'linux'],
Expand All @@ -13,7 +14,7 @@ module.exports = {

// Constants for finding SDK installations
SDK_ROOT_PATH_LINUX:"~/.titanium/",
SDK_ROOT_PATH_WIN32:"%APPDATA%\\Titanium\\",
SDK_ROOT_PATH_WIN32: path.join(process.env.APPDATA, 'Titanium'), //"%APPDATA%\\Titanium\\",
SDK_ROOT_PATH_MACOSX:"/Library/Application Support/Titanium/",
SDK_ROOT_PATH_MACOSX_ALT:"~/Library/Application Support/Titanium/",
SDK_ROOT_SUFFIX: {
Expand Down

0 comments on commit e70a293

Please sign in to comment.