Skip to content

Commit

Permalink
fix the require line in server.js to not use the ../ to get to lib/
Browse files Browse the repository at this point in the history
  • Loading branch information
jackowayed authored and robrighter committed Aug 30, 2010
1 parent dd91dc5 commit 3b95c15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
@@ -1,5 +1,5 @@
//setup Dependencies
require(__dirname + "/../lib/setup").ext( __dirname + "/../lib").ext( __dirname + "/../lib/express/support");
require(__dirname + "/lib/setup").ext( __dirname + "/lib").ext( __dirname + "/lib/express/support");
var connect = require('connect')
, express = require('express')
, sys = require('sys')
Expand Down Expand Up @@ -91,4 +91,4 @@ function NotFound(msg){
}


console.log('Listening on http://0.0.0.0:' + port );
console.log('Listening on http://0.0.0.0:' + port );

0 comments on commit 3b95c15

Please sign in to comment.