Skip to content

Commit

Permalink
[TIMOB-20014] Fixed differential build bug when JavaScript minificati…
Browse files Browse the repository at this point in the history
…on is disabled.
  • Loading branch information
cb1kenobi committed Nov 19, 2015
1 parent 8429320 commit 49cee2d
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 49cee2d

Please sign in to comment.