From 4196b00771c2a04aa075c175be5936ae11ab1c3f Mon Sep 17 00:00:00 2001 From: Akshay Singla Date: Wed, 3 Jun 2026 04:47:18 +0000 Subject: [PATCH] lakebox: color "stopping" status yellow Mirrors the "creating" treatment so transient states are visually distinct from terminal ones in `list` and `status` output. Co-authored-by: Isaac --- cmd/lakebox/ui.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/lakebox/ui.go b/cmd/lakebox/ui.go index 82f2c45c313..45aa730f79e 100644 --- a/cmd/lakebox/ui.go +++ b/cmd/lakebox/ui.go @@ -65,6 +65,8 @@ func status(ctx context.Context, s string) string { return cmdio.Faint(ctx, "stopped") case "creating": return cmdio.Bold(ctx, cmdio.Cyan(ctx, "creating…")) + case "stopping": + return cmdio.Yellow(ctx, "stopping…") default: return cmdio.Faint(ctx, strings.ToLower(s)) }