Skip to content

Commit

Permalink
0.6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
remy committed Nov 8, 2011
1 parent 2ad9248 commit 54d3240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Expand Up @@ -78,5 +78,5 @@ var server = connect.createServer(
connect.router(remoteServer)
);

console.log('Listening on ' + (process.ARGV[2] || 80));
server.listen(parseInt(process.ARGV[2]) || 80);
console.log('Listening on ' + (process.argv[2] || 80));
server.listen(parseInt(process.argv[2]) || 80);

0 comments on commit 54d3240

Please sign in to comment.