Skip to content

Commit

Permalink
Fixed EOL character detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbalsamo committed Apr 16, 2021
1 parent 2d3e94f commit 040d2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convert_heatmaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ url = clio.host;
const fileTemps = {};
var manifest = [];
const mfData = []
manifest = fs.readFileSync(inputFolder + '/' + clio.manifest).toString().split('\r\n');
manifest = fs.readFileSync(inputFolder + '/' + clio.manifest).toString().split(/\r\n|\n/);

console.log('Reading manifest file.');

Expand Down

0 comments on commit 040d2ff

Please sign in to comment.