1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-12 00:30:06 +00:00

fix: prettier

This commit is contained in:
Allan Bowe
2021-10-15 06:24:01 +00:00
parent 17a7a26fc3
commit 716ae81d92
4 changed files with 62 additions and 43 deletions

View File

@@ -41,7 +41,7 @@ export class ExecutionController {
let webout = path.join(session.path, 'webout.txt')
await createFile(webout, '')
program = `
%let sasjsprocessmode=Stored Program;
filename _webout "${webout}";
@@ -93,7 +93,7 @@ ${program}`
(key: string) => key.toLowerCase() === '_debug'
)
if (debug && vars[debug] >= 131 || stderr) {
if ((debug && vars[debug] >= 131) || stderr) {
webout = `<html><body>
${webout}
<div style="text-align:left">
@@ -102,7 +102,7 @@ ${webout}
</div>
</body></html>`
}
session.inUse = false
sessionController.deleteSession(session)