From 9bea4c8d5875da3f3b714a879a6a588f9f0af56e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 28 Oct 2010 19:41:44 -0700 Subject: [PATCH] X the node-repl script --- bin/node-repl | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 bin/node-repl diff --git a/bin/node-repl b/bin/node-repl deleted file mode 100755 index 15ef58c180..0000000000 --- a/bin/node-repl +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env node - -console.log("Type '.help' for options."); -console.log("(The REPL can also be started by typing 'node' without arguments)"); - -require('repl').start(); - -// vim:ft=javascript