Default to 'cp437' encoding vs current client encoding so we have something stable

This commit is contained in:
Bryan Ashby 2018-08-05 21:22:32 -06:00
parent dfe1c297b5
commit d54c38b9a9
1 changed files with 1 additions and 1 deletions

View File

@ -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,