Skip to content

Commit

Permalink
fix: delete dummy code
Browse files Browse the repository at this point in the history
  • Loading branch information
nefrob committed Oct 14, 2024
1 parent 371d411 commit f83746f
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

0 comments on commit f83746f

Please sign in to comment.