From afcf9ac2bfad8346f2d960d9e1ea062e825f3e5a Mon Sep 17 00:00:00 2001 From: Leonard Weigand Date: Thu, 3 Sep 2015 18:41:51 +0200 Subject: [PATCH] Fixes #169 --- plugin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/index.js b/plugin/index.js index ca31153..a995d8e 100644 --- a/plugin/index.js +++ b/plugin/index.js @@ -98,7 +98,7 @@ Generator.prototype.plugItInPlugItIn = function() { })(); function installPlugin(plugin, cb) { - me.tarball('http://downloads.wordpress.org/plugin/' + plugin + '.zip', path.join(me.conf.get('contentDir') || 'wp-content', 'plugins', plugin), cb); + me.tarball('http://downloads.wordpress.org/plugin/' + plugin + '.zip', path.join(me.conf.get('contentDir') || 'wp-content', 'plugins'), cb); } };