Skip to content

Commit

Permalink
Merge pull request #7473 from cb1kenobi/timob-20014_5_1_X
Browse files Browse the repository at this point in the history
[TIMOB-20014] Fixed differential build bug when JavaScript minification is disabled.
  • Loading branch information
cheekiatng committed Nov 19, 2015
2 parents 8429320 + 49cee2d commit 0913213
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4773,7 +4773,9 @@ iOSBuilder.prototype.copyResources = function copyResources(next) {
cb2();
})(r, from, to, cb);
} else {
if (!this.copyFileSync(from, to)) {
if (this.copyFileSync(from, to)) {
this.jsFilesChanged = true;
} else {
this.logger.trace(__('No change, skipping %s', to.cyan));
}
cb();
Expand Down

0 comments on commit 0913213

Please sign in to comment.