Skip to content

Commit

Permalink
tweak eol
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Dec 28, 2011
1 parent 9cf1800 commit 09c9537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/express
Expand Up @@ -31,7 +31,7 @@ var cssEngine;
* End-of-line code.
*/

var eol = os.platform === undefined ? '\r\n' : ('win32' === os.platform() ? '\r\n' : '\n');
var eol = 'win32' == os.platform() ? '\r\n' : '\n';

/**
* Template engine to utilize.
Expand Down

0 comments on commit 09c9537

Please sign in to comment.