Skip to content

Commit 4e05aeb

Browse files
cdervclaude
andcommitted
Fix install/uninstall descriptions to not mention extensions
`quarto install` and `quarto uninstall` are tools-only commands. Our branch incorrectly added "extension or" to their descriptions. Restore tools-only wording while keeping the dynamic tool name list. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e51091e commit 4e05aeb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/command/install/cmd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const installCommand = new Command()
3636
"Update system path when a tool is installed",
3737
)
3838
.description(
39-
`Installs an extension or global dependency (${installableToolNames().join(", ")}).`,
39+
`Installs a global dependency (${installableToolNames().join(", ")}).`,
4040
)
4141
.example(
4242
"Install TinyTeX",

src/command/uninstall/cmd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const uninstallCommand = new Command()
2727
"Update system path when a tool is installed",
2828
)
2929
.description(
30-
`Removes an extension or global dependency (${installableToolNames().join(", ")}).`,
30+
`Uninstalls a global dependency (${installableToolNames().join(", ")}).`,
3131
)
3232
.example(
3333
"Remove extension using name",

0 commit comments

Comments
 (0)