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-05 08:39:32 +0300
committerisaacs <i@izs.me>2010-03-05 08:40:23 +0300
commit8073b0b9838b36847bed1fa9d93ed6b7390cb2c7 (patch)
treec63fb7f56557a9e6e61d78376cbc12a3ecd88ebe /scripts
parentfbbdff345a6ac92ab47c820ff02148f9ad179f96 (diff)
Refactor out the utils/index.js file, and clean up some style issues.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bootstrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bootstrap.js b/scripts/bootstrap.js
index 7a6fa336c..0e3a9c7fc 100755
--- a/scripts/bootstrap.js
+++ b/scripts/bootstrap.js
@@ -2,11 +2,11 @@
var sys = require("sys");
-function print (m, cr) { process.stdio.writeError(m+(cr===false?"":"\n")); return print };
+function print (m, cr) { process.stdio.writeError(m+(cr===false?"":"\n")); return print }
require("../npm").install("http://github.com/isaacs/npm/tarball/master", function (er, ok) {
if (er) {
sys.error("\nFailed after "+ok.length+" step(s)\n");
throw er;
} else print("It worked!");
-})
+});