`homeboy upgrade`
Synopsis
homeboy upgrade [OPTIONS]Description
Upgrades Homeboy to the latest version. The command auto-detects the installation method (Homebrew, Cargo, source build, or downloaded release binary) and runs the appropriate upgrade process.
By default, after a successful local upgrade, Homeboy also checks configured SSH runners and runs their configured Homeboy binary through the same upgrade path. This keeps lab runners from drifting behind the local CLI.
Options
--check: Check for updates without installing. Returns version information without making changes.--force: Force upgrade even if already at the latest version.--no-restart: Skip automatic restart after upgrade. Useful for scripted environments.--skip-extensions: Skip automatic extension updates.--skip-runners: Skip automatic configured runner upgrades.--runner: Upgrade only the named configured runner. Repeat to target multiple runners.--method: Override install method detection (homebrew|cargo|source|binary).
Installation Method Detection
Homeboy detects how it was installed and uses the appropriate upgrade method:
| Method | Detection | Upgrade Command |
|---|---|---|
| Homebrew | Binary path contains /Cellar/ or /homebrew/, or brew list homeboy succeeds | brew update && brew upgrade homeboy |
| Cargo | Binary path contains /.cargo/bin/ | cargo install homeboy |
| Source | Binary path contains /target/release/ or /target/debug/ | git pull && cargo build --release |
| Binary | Binary path contains /bin/homeboy (covers ~/bin/homeboy and /usr/local/bin/homeboy) | Downloads latest release asset and replaces the current binary |
If the installation method cannot be detected, an error is returned with manual upgrade instructions. You can also override detection:
homeboy upgrade --method binaryExamples
Check for updates:
homeboy upgrade --checkUpgrade to the latest version:
homeboy upgradeUpgrade without auto-restart:
homeboy upgrade --no-restartForce reinstall:
homeboy upgrade --forceUpgrade only a specific runner after the local upgrade:
homeboy upgrade --runner labUpgrade locally without touching configured runners:
homeboy upgrade --skip-runnersJSON output
Note: all command output is wrapped in the global JSON envelope described in the JSON output contract.
Note: all command output is wrapped in the global JSON envelope described in the JSON output contract.
command:upgrade.checkcurrent_version: Current installed versionlatest_version: Latest available version from crates.io (may be null if network fails)update_available: Boolean indicating if an update is availableinstall_method: Detected installation method (homebrew,cargo,source, orunknown)
Note: all command output is wrapped in the global JSON envelope described in the JSON output contract.
command:upgradeinstall_method: Installation method used for upgradeprevious_version: Version before upgradenew_version: Version after upgrade (may be null)upgraded: Boolean indicating if upgrade was performedmessage: Human-readable status messagerestart_required: Boolean indicating if a restart is needed (true only for source installs)extensions_updated: Extension upgrade entries when installed extensions were checkedextensions_skipped: Extension IDs that could not be updatedprojects_migrated: Project config migration entriesrunners_updated: Runner upgrade entries for configured runners that completed successfullyrunners_skipped: Runner upgrade entries for configured runners that failed or could not verify a version
Exit code
0: Success (upgrade completed or already at latest)- Non-zero: Error during upgrade process
Notes
- The
updatecommand is an alias forupgradewith identical behavior. - Version checking queries the crates.io API. Network failures are handled gracefully.
- On Unix platforms, successful source installs automatically restart into the new binary. Binary and package-manager installs do not require a restart.