Skip to content

Commit fd32610

Browse files
committed
forgot to set return value
1 parent d1f642e commit fd32610

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/execution/runAsTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function runAsTask(
2626
const workspace: WorkspaceFolder | TaskScope = getWorkspaceFolderOrDefault(options.project?.uri);
2727

2828
let executable = environment.execInfo?.activatedRun?.executable ?? environment.execInfo?.run.executable ?? 'python';
29-
quoteArg(executable);
29+
executable = quoteArg(executable);
3030
const args = environment.execInfo?.activatedRun?.args ?? environment.execInfo?.run.args ?? [];
3131
const allArgs = [...args, ...options.args];
3232

0 commit comments

Comments
 (0)