mirror of
https://github.com/sasjs/server.git
synced 2026-01-08 15:00:05 +00:00
fix: SASJS_WEBOUT_HEADERS path for windows
This commit is contained in:
@@ -23,7 +23,9 @@ export const createRProgram = async (
|
||||
isWindows() ? session.path.replace(/\\/g, '\\\\') : session.path
|
||||
}';
|
||||
._WEBOUT <- '${isWindows() ? weboutPath.replace(/\\/g, '\\\\') : weboutPath}';
|
||||
._SASJS_WEBOUT_HEADERS <- '${headersPath}';
|
||||
._SASJS_WEBOUT_HEADERS <- '${
|
||||
isWindows() ? headersPath.replace(/\\/g, '\\\\') : headersPath
|
||||
}';
|
||||
._SASJS_TOKENFILE <- '${
|
||||
isWindows() ? tokenFile.replace(/\\/g, '\\\\') : tokenFile
|
||||
}';
|
||||
|
||||
Reference in New Issue
Block a user