pull/134/merge
Lennart kats 2015-09-03 14:40:24 +00:00
rodzic d2049f0d8b
commit 53b9f551a7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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]);