mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
now using sudo only when necessary
This commit is contained in:
@@ -42,7 +42,6 @@ filedir ($BUILD_CJS_CAPPUCCINO_DEBUG_FRAMEWORKS, ["debug", "release"], function(
|
|||||||
});
|
});
|
||||||
|
|
||||||
task ("CommonJS", [$BUILD_CJS_OBJECTIVE_J_DEBUG_FRAMEWORKS, $BUILD_CJS_CAPPUCCINO_DEBUG_FRAMEWORKS, "debug", "release"], function() {
|
task ("CommonJS", [$BUILD_CJS_OBJECTIVE_J_DEBUG_FRAMEWORKS, $BUILD_CJS_CAPPUCCINO_DEBUG_FRAMEWORKS, "debug", "release"], function() {
|
||||||
console.log("in commonjs action");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
task ("install", ["CommonJS"], function()
|
task ("install", ["CommonJS"], function()
|
||||||
|
|||||||
+1
-1
@@ -454,7 +454,7 @@ global.installCopy = function(sourcePath, useSudo)
|
|||||||
fs.readdirSync(binPath).forEach(function (name)
|
fs.readdirSync(binPath).forEach(function (name)
|
||||||
{
|
{
|
||||||
var prefix = child_process.execSync("npm prefix -g").toString().trim();
|
var prefix = child_process.execSync("npm prefix -g").toString().trim();
|
||||||
child_process.execSync("sudo ln -sf " + path.join(binPath, name) + " " + path.join(prefix, "bin", name));
|
child_process.execSync( (useSudo ? "sudo " : "") + "ln -sf " + path.join(binPath, name) + " " + path.join(prefix, "bin", name));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user