From f83746f8b8b83d0b23ba34bf7af42a294c1030e0 Mon Sep 17 00:00:00 2001 From: nefrob Date: Sun, 13 Oct 2024 11:59:27 -0600 Subject: [PATCH] fix: delete dummy code --- src/recipe.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/recipe.ts b/src/recipe.ts index f1046b7..89ff1c2 100644 --- a/src/recipe.ts +++ b/src/recipe.ts @@ -128,12 +128,4 @@ const runRecipeInBackground = async (args: string[]) => { LOGGER.info(data); // showErrorWithLink('Error running recipe.'); }); - - // Kill the child process when the extension is disposed - const disposable = new vscode.Disposable(() => { - if (!childProcess.killed) { - childProcess.kill(); - } - }); - context.subscriptions.push(disposable); };