Skip to content

Commit 95dc32e

Browse files
wesmclaude
andauthored
Include --force in dev build update notification (#119)
## Summary - The TUI notification for dev builds now shows the complete command `roborev update --force` instead of just `roborev update` - Dev builds require `--force` to update to an official release, so the notification should reflect that ## Test plan - [ ] Run a dev build and verify the notification shows `run 'roborev update --force'` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e21dca0 commit 95dc32e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/roborev/tui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2290,7 +2290,7 @@ func (m tuiModel) renderQueueView() string {
22902290
updateStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("226")).Bold(true)
22912291
var updateMsg string
22922292
if m.updateIsDevBuild {
2293-
updateMsg = fmt.Sprintf("Dev build - latest release: %s - run 'roborev update'", m.updateAvailable)
2293+
updateMsg = fmt.Sprintf("Dev build - latest release: %s - run 'roborev update --force'", m.updateAvailable)
22942294
} else {
22952295
updateMsg = fmt.Sprintf("Update available: %s - run 'roborev update'", m.updateAvailable)
22962296
}

0 commit comments

Comments
 (0)