This commit is contained in:
Reinier Criel 2025-12-11 15:13:15 -08:00
parent 14bb6899d8
commit 2b0f8d9f0d
6 changed files with 76 additions and 4 deletions

View file

@ -3,7 +3,7 @@
import chalk from "chalk";
import { ui } from "../src/environment/userInteraction.js";
import { setup } from "../src/shell-integration/setup.js";
import { teardown } from "../src/shell-integration/teardown.js";
import { teardown, teardownCi } from "../src/shell-integration/teardown.js";
import { setupCi } from "../src/shell-integration/setup-ci.js";
import { initializeCliArguments } from "../src/config/cliArguments.js";
import { setEcoSystem } from "../src/config/settings.js";
@ -61,6 +61,7 @@ if (tool) {
setup();
} else if (command === "teardown") {
teardown();
teardownCi();
} else if (command === "setup-ci") {
setupCi();
} else if (command === "--version" || command === "-v" || command === "-v") {