Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/cli/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func init() {
installCmd.Flags().StringVarP(&installCfg.Preset, "preset", "p", "", "use a preset: minimal, developer, full")
installCmd.Flags().StringVarP(&installCfg.User, "user", "u", "", "install from an alias or openboot.dev/username/slug config")
installCmd.Flags().String("from", "", "install from a local config or snapshot JSON file")
installCmd.Flags().BoolVarP(&installCfg.Silent, "silent", "s", false, "non-interactive mode (for CI/CD)")
installCmd.Flags().BoolVarP(&installCfg.Silent, "silent", "s", false, "non-interactive mode (no TTY prompts; for scripts and e2e)")
installCmd.Flags().BoolVar(&installCfg.DryRun, "dry-run", false, "preview changes without installing")
installCmd.Flags().BoolVar(&installCfg.PackagesOnly, "packages-only", false, "install packages only, skip system config")

Expand Down
2 changes: 1 addition & 1 deletion internal/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Config struct {
Preset string // -p / OPENBOOT_PRESET
User string // -u / OPENBOOT_USER
DryRun bool // --dry-run
Silent bool // -s / CI mode
Silent bool // -s / non-interactive: no TTY prompts (scripts, e2e)
PackagesOnly bool // --packages-only
Update bool // --update
Shell string // --shell (install|skip)
Expand Down
Loading