From 2aa8830b25bcfc11cbd52a95d4b7fda6997490e1 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Fri, 18 Jul 2025 15:05:09 +0200 Subject: [PATCH] Fix bug in teardown: missing argument --- src/shell-integration/teardown.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shell-integration/teardown.js b/src/shell-integration/teardown.js index 00a933f..9f74300 100644 --- a/src/shell-integration/teardown.js +++ b/src/shell-integration/teardown.js @@ -1,6 +1,7 @@ import chalk from "chalk"; import { ui } from "../environment/userInteraction.js"; import { detectShells } from "./shellDetection.js"; +import { knownAikidoTools } from "./helpers.js"; export async function teardown() { ui.writeInformation( @@ -26,7 +27,7 @@ export async function teardown() { for (const shell of shells) { let success = false; try { - success = shell.teardown(); + success = shell.teardown(knownAikidoTools); } catch { success = false; }