Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-17696] Added support for paths.xcode in ti config. #162

Merged
merged 2 commits into from
Sep 16, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Fixed bug with abbreviated options that don't have a value being set to true
* Fixed bug where Xcode 6 was not being removed from Titanium SDK 3.3.0 and older from the "ti info" results [TIMOB-17649]
* Fixed bug where "ti info" failed when an invalid Titanium SDK is selected [TIMOB-17666]
* Added support for paths.xcode in "ti config" [TIMOB-17696]

3.3.0 (7/17/14)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ exports.run = function (logger, config, cli, finished) {
var listMatch = key.match(/^paths\.(.*)$/);
if (listMatch) {
var subPath = listMatch[1];
if (['commands', 'hooks', 'modules', 'plugins', 'sdks', 'codeProcessorPlugins', 'templates'].indexOf(subPath) == -1) {
if (['commands', 'hooks', 'modules', 'plugins', 'sdks', 'codeProcessorPlugins', 'templates', 'xcode'].indexOf(subPath) == -1) {
logger.error(__('Unsupported key %s', key) + '\n');
return;
}
Expand Down