Skip to content

Commit

Permalink
starters pass over command line args to node
Browse files Browse the repository at this point in the history
  • Loading branch information
danstocker committed Sep 22, 2011
1 parent 0383de8 commit 03e75a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion start.cmd
@@ -1,4 +1,4 @@
set CYGWIN=nodosfilewarning
path %PATH%;%CD%\redist\ffmpeg;%CD%\redist\node;%CD%\redist\sqlite;%PROGRAMFILES%\VideoLAN\VLC;
node.exe server/src/server.js > error.txt
node.exe server/src/server.js %* > error.txt

2 changes: 1 addition & 1 deletion start.command
@@ -1,4 +1,4 @@
DIR="$( cd "$( dirname "$0" )" && pwd )"
PATH="$DIR/redist/sqlite/":"$DIR/redist/node/":"$DIR/redist/ffmpeg/":/Applications/VLC.app/Contents/MacOS:$PATH
cd "$DIR"
node "$DIR/server/src/server.js" > error.txt
node "$DIR/server/src/server.js" $* > error.txt
2 changes: 1 addition & 1 deletion start.sh
@@ -1,2 +1,2 @@
node server/src/server.js > error.txt
node server/src/server.js $* > error.txt

0 comments on commit 03e75a4

Please sign in to comment.