fix(cli): hide setup project banner

This commit is contained in:
Luca Martial 2026-05-13 09:16:35 -07:00
parent 754e4a9039
commit e50fef851f
5 changed files with 30 additions and 6 deletions

View file

@ -162,6 +162,10 @@ function shouldSuppressProjectDirLine(path: string[], options: Record<string, un
return true;
}
if (commandPathKey === 'ktx setup') {
return true;
}
if (
commandPathKey === 'ktx status' &&
typeof options.projectDir !== 'string' &&