Skip to content

Commit

Permalink
refactor: remove doctor command
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty committed Jan 7, 2025
1 parent 40097b5 commit bcbffa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { errorMessage } from "@/lib/logs";
import { cliProgramRoot } from "@/commands";

import { installCommand } from "@/commands/install";
import { doctorCommand } from "@/commands/doctor";
// import { doctorCommand } from "@/commands/doctor";
import { cloneCommand } from "@/commands/clone";
import { validatorCommand } from "@/commands/validator";
import { buildCommand } from "@/commands/build";
Expand All @@ -21,7 +21,7 @@ async function main() {

program
.addCommand(installCommand())
.addCommand(doctorCommand())
// .addCommand(doctorCommand())
.addCommand(validatorCommand())
.addCommand(cloneCommand())
.addCommand(buildCommand())
Expand Down

0 comments on commit bcbffa5

Please sign in to comment.