Fix reference error where exports was referred to but not updated.
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/f4543544 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/f4543544 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/f4543544 Branch: refs/heads/master Commit: f4543544e54e5f9aa7aac32648455614b3cef9f6 Parents: e1970f3 Author: Andrew Grieve <[email protected]> Authored: Tue Apr 23 11:01:12 2013 -0400 Committer: Andrew Grieve <[email protected]> Committed: Tue Apr 23 11:01:12 2013 -0400 ---------------------------------------------------------------------- src/util/xml-helpers.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/f4543544/src/util/xml-helpers.js ---------------------------------------------------------------------- diff --git a/src/util/xml-helpers.js b/src/util/xml-helpers.js index af38eee..0e9f0f5 100644 --- a/src/util/xml-helpers.js +++ b/src/util/xml-helpers.js @@ -25,7 +25,7 @@ var fs = require('fs') , path = require('path') , et = require('elementtree'); -module.exports = { +exports = module.exports = { moveProjFile: function(origFile, projPath, callback) { var src = path.resolve(projPath, origFile) , dest = src.replace('.orig', '');
