Split AreaFix with \r\n

This commit is contained in:
Bryan Ashby
2018-01-09 22:13:29 -07:00
parent f939babe72
commit ad60e5a7df

View File

@@ -79,7 +79,7 @@ function areaFix() {
//
const messageBody = argv._.slice(2, -1).map(arg => {
return arg.replace(/["']/g, '');
}).join('\n') + '\n';
}).join('\r\n') + '\n';
const Message = require('../message.js');