From 80357e6a77a017307fa9733190fe60ed616605fe Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Tue, 14 Apr 2026 16:46:06 +0200 Subject: [PATCH] fix: include --staging in build conflict suggestions --- src/Commands/BuildCommand.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Commands/BuildCommand.php b/src/Commands/BuildCommand.php index 4faf2d7..f387b20 100644 --- a/src/Commands/BuildCommand.php +++ b/src/Commands/BuildCommand.php @@ -154,8 +154,10 @@ HELP; $this->warn("An in-progress build already exists: $staging"); $this->line(''); $this->line('Choose one of:'); - $this->line(' blomstra:search:index build --resume Continue from where it left off'); - $this->line(' blomstra:search:index build --fresh Drop this build and start completely fresh'); + $this->line(' blomstra:search:index build --resume Continue from where it left off'); + $this->line(' blomstra:search:index build --resume --staging Continue and keep in staging when done'); + $this->line(' blomstra:search:index build --fresh Drop this build and start completely fresh'); + $this->line(' blomstra:search:index build --fresh --staging Start fresh and keep in staging when done'); return; }