d0f0fd06 by Tadej Novak

Properly parse CR+LF on Windows when generating manifests file

1 parent 12790e51
......@@ -299,7 +299,7 @@ module.exports = function(grunt) {
// translate this manifest
jsManifests += ' \'' + basename(filename, '.m3u8') + '\': ' +
grunt.file.read(abspath)
.split('\n')
.split(/\r\n|\n/)
// quote and concatenate
.map(function(line) {
......