Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-03-01 12:37:50 +0300
committerisaacs <i@izs.me>2010-03-01 12:37:50 +0300
commit3e9607fad66c24d6bb6cf2405920c729ea376f69 (patch)
treefaf5a5392c1c5258c1392fc1a408e744489db4c8 /scripts
parenta176bfb585a1f905a224e644d4097f668c50ee28 (diff)
Remove debug code
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/install.js b/scripts/install.js
index baa9d133d..603f73d69 100755
--- a/scripts/install.js
+++ b/scripts/install.js
@@ -13,7 +13,6 @@ fs.lstat(bin, function (er, st) {
function linkBin (er) {
if (er) throw er;
- sys.puts("about to link " + clijs+" to " +bin);
fs.symlinkSync(clijs, bin, function (er) {
if (er) throw er;
});