From 53b9f551a77b77f6af67eb1111c87142ebbc47af Mon Sep 17 00:00:00 2001 From: Lennart kats Date: Thu, 3 Sep 2015 14:40:24 +0000 Subject: [PATCH] Cleanup --- plugins/c9.ide.plugins/updater-npm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/c9.ide.plugins/updater-npm.js b/plugins/c9.ide.plugins/updater-npm.js index 49b28367..50a41100 100644 --- a/plugins/c9.ide.plugins/updater-npm.js +++ b/plugins/c9.ide.plugins/updater-npm.js @@ -295,13 +295,13 @@ define(function(require, exports, module) { * @param {String} pkgPath Path to the source package folder */ function fsLink(pkgPath, callback) { - debug("ls", { args: [ "-s", "-f", pkgPath, [ managedPluginsPath, "." ].join("/") ]}); + debug("ln", { args: [ "-s", "-f", pkgPath, [ managedPluginsPath, "." ].join("/") ]}); proc.execFile("ln", { args: [ "-s", "-f", pkgPath, - [ managedPluginsPath, "." ].join("/"), + managedPluginsPath + "/.", ], }, function(err, stdout, stderr) { debug([err, stdout, stderr]);