Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Express dir fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arturadib committed Feb 21, 2012
1 parent b548c8e commit 71e9fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Expand Up @@ -57,7 +57,7 @@ function setupServer(callback){
// HTTP server
app.use(express.bodyParser());
app.use(app.router);
app.use(express.static(__dirname+'/'+config.tmp_path));
app.use(express.static(config.tmp_path));
app.listen(config.server_port);

// POST /newmerge handler
Expand Down

0 comments on commit 71e9fd1

Please sign in to comment.