~cordova-ubuntu/cordova-cli/trunk

« back to all changes in this revision

Viewing changes to node_modules/cordova/_vendor/plugman/0.19.1-dev/src/platforms/android.js

  • Committer: Robert Bruce Park
  • Date: 2014-02-26 21:27:56 UTC
  • mfrom: (44.1.5 3.4-release)
  • Revision ID: robert.park@canonical.com-20140226212756-6jmoiqugw0f1ebxb
Update to 3.4.0 stable release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
            var src = el.attrib.src;
62
62
            var target = el.attrib.target;
63
63
            require('../../plugman').emit('verbose', 'Copying resource file ' + src + ' to ' + target);
64
 
            common.copyFile(plugin_dir, src, project_dir, target);
 
64
            common.copyFile(plugin_dir, src, project_dir, path.normalize(target));
65
65
        },
66
66
        uninstall:function(el, project_dir) {
67
67
            var target = el.attrib.target;
68
 
            common.removeFile(project_dir, target);
 
68
            common.removeFile(project_dir, path.normalize(target));
69
69
        }
70
70
    }
71
71
};