From f6dc74f16bddafa1de9c83c2f27671a241abdad4 Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Mon, 20 Jun 2022 14:38:19 +0000 Subject: [PATCH] fix: removing UTF-8 options from commandline. There appears to be no reliable way to enforce UTF-8 without additional modifications to the PATH variable to ensure a DBCS instance of SAS. --- api/src/controllers/internal/Session.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/src/controllers/internal/Session.ts b/api/src/controllers/internal/Session.ts index 623ec85..dc29866 100644 --- a/api/src/controllers/internal/Session.ts +++ b/api/src/controllers/internal/Session.ts @@ -99,8 +99,6 @@ ${autoExecContent}` session.path, '-AUTOEXEC', autoExecPath, - '-ENCODING', - 'UTF-8', process.platform === 'win32' ? '-nosplash' : '', process.platform === 'win32' ? '-icon' : '', process.platform === 'win32' ? '-nologo' : ''