We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3b8d5 commit 4337308Copy full SHA for 4337308
src/command/install/cmd.ts
@@ -74,6 +74,7 @@ export const installCommand = new Command()
74
// Select which tool should be installed
75
const toolTarget = await selectTool(allTools, "install");
76
if (toolTarget) {
77
+ info("");
78
await installTool(toolTarget);
79
}
80
src/command/remove/cmd.ts
@@ -106,6 +106,7 @@ export const removeCommand = new Command()
106
107
const toolTarget = await selectTool(allTools, "remove");
108
109
110
await uninstallTool(toolTarget);
111
112
0 commit comments