Skip to content

Commit 2e64a22

Browse files
committed
Changing word2md tool to map Windows-1252 characters to Unicode
1 parent c457acf commit 2e64a22

File tree

4 files changed

+98
-38
lines changed

4 files changed

+98
-38
lines changed

Jakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ compileFile(word2mdJs,
294294
file(specMd, [word2mdJs, specWord], function () {
295295
jake.cpR(headerMd, specMd, {silent: true});
296296
var specWordFullPath = path.resolve(specWord);
297-
var cmd = "cscript //nologo " + word2mdJs + ' "' + specWordFullPath + '" >>' + specMd;
297+
var cmd = "cscript //nologo " + word2mdJs + ' "' + specWordFullPath + '" ' + specMd;
298298
console.log(cmd);
299299
child_process.exec(cmd, function () {
300300
complete();

0 commit comments

Comments
 (0)