Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
fix require error
Browse files Browse the repository at this point in the history
  • Loading branch information
okhiroyuki committed Dec 26, 2020
1 parent 67ef468 commit 0c3b072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patch.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node

module.exports = function (context) {
var fs = context.requireCordovaModule('fs'),
path = context.requireCordovaModule('path'),
var fs = require('fs'),
path = require('path'),
platformRoot = path.join(context.opts.projectRoot, 'platforms/android'),
manifestFile = path.join(platformRoot, 'AndroidManifest.xml');

Expand Down

0 comments on commit 0c3b072

Please sign in to comment.