From: Jason Woofenden Date: Fri, 27 Jan 2012 20:16:57 +0000 (-0500) Subject: better way to get cwd right X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-cgt.git;a=commitdiff_plain;h=2f937ffd72c313f94b5b0fc6c8817391df32b8dc better way to get cwd right --- 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