Skip to content

Commit

Permalink
πŸ› fix edit manifest script failing on new cordova version
Browse files Browse the repository at this point in the history
  • Loading branch information
salmamali committed Mar 31, 2019
1 parent ec967e5 commit d5a87c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/android/edit_manifest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require('fs');
const path = require('path');
const Q = require('q');
module.exports = (ctx, isInstalling) => {
const fs = ctx.requireCordovaModule('fs');
const path = ctx.requireCordovaModule('path');
const Q = ctx.requireCordovaModule('q');
const xml = ctx.requireCordovaModule('cordova-common').xmlHelpers;

const deferred = Q.defer();
Expand Down

0 comments on commit d5a87c5

Please sign in to comment.