Skip to content

Commit

Permalink
Merge pull request #7027 from cb1kenobi/timob-19340
Browse files Browse the repository at this point in the history
[TIMOB-19340] Fixed a bug with allowing multiple comma-separated plat…
  • Loading branch information
cb1kenobi committed Aug 14, 2015
2 parents bfa0e5c + 3119bb6 commit 8ede0df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cli/lib/creator.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ var appc = require('node-appc'),
ejs = require('ejs'),
fields = require('fields'),
fs = require('fs'),
i18n = appc.i18n(__dirname),
path = require('path'),
ti = require('titanium-sdk'),
wrench = require('wrench'),
__ = appc.i18n(__dirname).__;
__ = i18n.__,
__n = i18n.__n;

/**
* The base class for project creators (i.e. apps, modules).
Expand Down Expand Up @@ -353,6 +355,7 @@ Creator.prototype.configOptionPlatforms = function configOptionPlatforms(order)
}));
},
required: true,
skipValueCheck: true,
validate: validate,
values: availablePlatforms
};
Expand Down

0 comments on commit 8ede0df

Please sign in to comment.