Skip to content

Commit

Permalink
Add bin/
Browse files Browse the repository at this point in the history
  • Loading branch information
itspriddle committed Jul 1, 2011
1 parent f32edba commit 9e9ae76
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/node
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

exec node $@
7 changes: 7 additions & 0 deletions bin/red
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env ruby

require 'pathname'
bin = Pathname.new(__FILE__).realpath
root = bin.dirname.parent

exec root.join("bin/node").to_s, root.join("lib/command.js").to_s, *ARGV

0 comments on commit 9e9ae76

Please sign in to comment.