From 8073b0b9838b36847bed1fa9d93ed6b7390cb2c7 Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 4 Mar 2010 21:39:32 -0800 Subject: Refactor out the utils/index.js file, and clean up some style issues. --- scripts/bootstrap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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!"); -}) +}); -- cgit v1.2.3