fix: guard update spinner output (#701) (thanks @bjesuiter)

This commit is contained in:
Peter Steinberger
2026-01-11 03:03:09 +01:00
parent f3bd6e4957
commit 5ec3663748
3 changed files with 3 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {
return;
}
const showProgress = !opts.json && process.stderr.isTTY;
const showProgress = !opts.json && process.stdout.isTTY;
if (!opts.json) {
defaultRuntime.log(theme.heading("Updating Clawdbot..."));