From 5a826a65b29f5c89a0c60bede111be7992027a0a Mon Sep 17 00:00:00 2001 From: Tobias Lindig Date: Tue, 3 Dec 2013 12:07:57 +0100 Subject: [PATCH] Gruntfile.js: Set line feed char to '\n' to get same result on all platforms. --- Gruntfile.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index c0e47d2395..d4b2fdd0b5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -3,6 +3,9 @@ module.exports = function(grunt) { "use strict"; + // Force use of Unix newlines + grunt.util.linefeed = '\n'; + RegExp.quote = require('regexp-quote') var btoa = require('btoa') // Project configuration.