Don't manually delete node_modules contents
diff --git a/index.js b/index.js
index 5a666ef..5825084 100644
--- a/index.js
+++ b/index.js
@@ -155,13 +155,6 @@
             // from package.json if --save was used.
             return superspawn.spawn('npm', fetchArgs, opts);
         })
-        .then(function (res) {
-            var pluginDest = path.join(dest, 'node_modules', target);
-            if (fs.existsSync(pluginDest)) {
-                shell.rm('-rf', pluginDest);
-            }
-            return res;
-        })
         .catch(function (err) {
             throw new CordovaError(err);
         });