Skip to content

Commit ebda9ef

Browse files
authored
Merge pull request #410 from sasjs/execution-issue
fix(execution): bumped @sasjs/adapter
2 parents 3da456e + 2f2393c commit ebda9ef

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
"vscode-test": "^1.6.1"
251251
},
252252
"dependencies": {
253-
"@sasjs/adapter": "4.3.3",
253+
"@sasjs/adapter": "4.3.5",
254254
"@sasjs/cli": "4.1.1",
255255
"@sasjs/lint": "2.3.1",
256256
"@sasjs/utils": "3.2.0",

src/commands/execute-code/ExecuteCodeCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export class ExecuteCodeCommand extends TargetCommand {
4646

4747
await executeCode(target, currentFileContent || '')
4848
.then(async (res) => {
49-
process.outputChannel.appendLine('SASjs: Code executed successfully!')
50-
5149
if (typeof res.log === 'object') {
5250
res.log = JSON.stringify(res.log, null, 2)
5351
}
5452

5553
await this.saveExecutionArtifacts({ ...res, code: editorContent })
54+
55+
process.outputChannel.appendLine('SASjs: Code executed successfully!')
5656
})
5757
.catch(async (err) => {
5858
await handleErrorResponse(err, 'Error executing code')

0 commit comments

Comments
 (0)