mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 10:40:06 +00:00
chore(lint): fix formatting
This commit is contained in:
@@ -46,8 +46,15 @@ export class SAS9ApiClient {
|
||||
await this.requestClient.login(userName, password, this.jobsPath)
|
||||
|
||||
// This piece of code forces a webout to prevent Stored Process Errors.
|
||||
const forceOutputCode = ['data _null_;', 'file _webout;', `put 'Executed sasjs run';`, 'run;']
|
||||
const formData = generateFileUploadForm([...linesOfCode, ...forceOutputCode].join('\n'))
|
||||
const forceOutputCode = [
|
||||
'data _null_;',
|
||||
'file _webout;',
|
||||
`put 'Executed sasjs run';`,
|
||||
'run;'
|
||||
]
|
||||
const formData = generateFileUploadForm(
|
||||
[...linesOfCode, ...forceOutputCode].join('\n')
|
||||
)
|
||||
|
||||
const codeInjectorPath = `/User Folders/${userName}/My Folder/sasjs/runner`
|
||||
const contentType =
|
||||
|
||||
Reference in New Issue
Block a user