Skip to content

Commit

Permalink
Temp fix for Babel
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Jun 19, 2016
1 parent e99597b commit 236db66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gyp/generator/ninja/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ Ninja.prototype.actionCmd = function actionCmd(base, toBase, cmds) {
return `cmd.exe /s /c "${res}"`;
};

Ninja.prototype.copies = function copies() {
Ninja.prototype.copies = function copies2() {
const copies = this.targetDict.copies || [];
if (copies.length === 0)
return [];
Expand Down Expand Up @@ -347,7 +347,7 @@ Ninja.prototype.copies = function copies() {
return res;
};

Ninja.prototype.actions = function actions() {
Ninja.prototype.actions = function actions2() {
const actions = this.targetDict.actions || [];
if (actions.length === 0)
return [];
Expand Down Expand Up @@ -590,7 +590,7 @@ NinjaMain.prototype.rulesAndTargets = function rulesAndTargets() {
main.sectionEnd('targets');
};

NinjaMain.prototype.defaults = function defaults() {
NinjaMain.prototype.defaults = function defaults2() {
const main = this.n;
const ninjas = this.ninjas;

Expand Down

0 comments on commit 236db66

Please sign in to comment.