JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
better way to get cwd right
authorJason Woofenden <jason@jasonwoof.com>
Fri, 27 Jan 2012 20:16:57 +0000 (15:16 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Fri, 27 Jan 2012 20:16:57 +0000 (15:16 -0500)
server.coffee

index 0411657..7d8063c 100644 (file)
@@ -302,9 +302,8 @@ http_server = http.createServer (req, res) ->
        return html_handler url_parts.query, res, req, url_parts
 
 ################## INIT ####################
-# nodester starts this app with the current working directory set to / and working copy in /app
-if process.cwd() is '/'
-       process.chdir '/app'
+# make sure the current working directory is correct
+process.chdir __dirname
 
 setInterval expire_old_games, 2 * 60 * 1000 # check every 2 minutes for expired games