Raxol.CLI.Commands.UpdateCmd (Raxol v0.2.0)

View Source

CLI command for managing Raxol updates.

This module handles:

  • Checking for updates
  • Performing self-updates
  • Managing update settings

Summary

Functions

Executes the update command with the provided options and arguments.

Functions

execute(args)

Executes the update command with the provided options and arguments.

Options

  • --check or -c: Check for updates without installing
  • --force or -f: Force update check, bypassing the check interval
  • --auto or -a: Enable or disable automatic update checks (value: on/off)
  • --version or -v: Update to a specific version
  • --no-delta or -n: Disable delta updates and use full updates only
  • --delta-info or -d: Show information about delta update availability

Examples

Check for updates:

raxol update --check

Perform an update:

raxol update

Update to a specific version:

raxol update --version 0.2.0

Update without using delta updates:

raxol update --no-delta

Disable automatic update checks:

raxol update --auto off