From 4d21ddbbe47789afb9639fd164f9a15161fe2e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vesa=20Poikaj=C3=A4rvi?= Date: Fri, 24 Oct 2014 11:30:24 +0700 Subject: [PATCH] Use path.join for compatibility --- gulpfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index caf4e12..2e66c16 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -88,7 +88,7 @@ gulp.task 'assets', -> gulp.task 'server', -> require('http') - .createServer ecstatic root: __dirname + '/public' + .createServer ecstatic root: path.join(__dirname, '/public') .listen 9001 gulp.task 'watch', ->