Skip to content

Commit

Permalink
Merge pull request #9065 from cb1kenobi/timob-24698_6_1_X
Browse files Browse the repository at this point in the history
[TIMOB-24698] Fixed 3.5 year old bug that didn't surface until we sta…
  • Loading branch information
mukherjee2 committed May 16, 2017
2 parents b1e7650 + e5df685 commit 97f389d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion android/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ AndroidBuilder.prototype.validate = function validate(logger, config, cli) {
}
}

var devices = deviceId == 'all' ? this.devices : this.devices.filter(function (d) { return d.id = deviceId; });
var devices = deviceId == 'all' ? this.devices : this.devices.filter(function (d) { return d.id === deviceId; });
devices.forEach(function (device) {
if (Array.isArray(device.abi) && !device.abi.some(function (a) { return this.abis.indexOf(a) != -1; }.bind(this))) {
if (this.target == 'emulator') {
Expand Down
4 changes: 2 additions & 2 deletions node_modules/node-titanium-sdk/lib/emulator.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions node_modules/node-titanium-sdk/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"markdown": "0.5.0",
"moment": "2.18.1",
"node-appc": "0.2.43",
"node-titanium-sdk": "0.2.4",
"node-titanium-sdk": "0.2.5",
"node-uuid": "1.4.8",
"pngjs": "3.0.1",
"request": "2.81.0",
Expand Down

0 comments on commit 97f389d

Please sign in to comment.