Skip to content

Commit

Permalink
Bug #857726 - Always add / after os.tmpDir()
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuck committed Apr 3, 2013
1 parent 991a836 commit 1085a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function setupStore( storeConfig ) {

app.configure( function() {
var optimize = config.NODE_ENV !== "development",
tmpDir = require( "os" ).tmpDir() + "butter/";
tmpDir = path.normalize( require( "os" ).tmpDir() + "/butter/" );

app.use( express.logger( config.logger ) )
.use( express.compress() )
Expand Down

0 comments on commit 1085a0e

Please sign in to comment.