From d54c38b9a979cea5a8412037f8f2199648512a6a Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 5 Aug 2018 21:22:32 -0600 Subject: [PATCH] Default to 'cp437' encoding vs current client encoding so we have something stable --- core/abracadabra.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/abracadabra.js b/core/abracadabra.js index 9ada9e5a..1ddec925 100644 --- a/core/abracadabra.js +++ b/core/abracadabra.js @@ -155,7 +155,7 @@ exports.getModule = class AbracadabraModule extends MenuModule { cwd : this.config.cwd, // null/undefined = parent_of(cmd) args : this.config.args, io : this.config.io || 'stdio', - encoding : this.config.encoding || this.client.term.outputEncoding, + encoding : this.config.encoding || 'cp437', dropFile : this.dropFile.fileName, dropFilePath : this.dropFile.fullPath, node : this.client.node,