From 2f937ffd72c313f94b5b0fc6c8817391df32b8dc Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 27 Jan 2012 15:16:57 -0500 Subject: [PATCH] better way to get cwd right --- server.coffee | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server.coffee b/server.coffee index 0411657..7d8063c 100644 --- a/server.coffee +++ b/server.coffee @@ -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 -- 1.7.10.4