fix: close CLI term gaps — workspace rejection, stale types, quiet, placebo, help

This commit is contained in:
John Dvorak
2026-05-22 12:51:12 -07:00
parent edc2989900
commit a186146c69
6 changed files with 24 additions and 29 deletions
+1 -1
View File
@@ -622,7 +622,7 @@ function parseInitOptions(args: string[], ctx: CliContext): InitOptions {
export async function handleInit(args: string[], ctx: CliContext): Promise<number> {
const result = await initHandler(args, ctx);
if (result.message) {
if (result.message && !ctx.options.quiet) {
console.log(result.message);
}