mix orchard.download (orchard v0.1.7)

View Source

Downloads the AXe CLI binary for managing Apple devices and simulators.

Usage

mix orchard.download

Options

  • --version - Specify the AXe version to download (default: 1.0.0)
  • --force - Force re-download even if the binary already exists

Examples

# Download the default version
mix orchard.download

# Download a specific version
mix orchard.download --version 1.0.0

# Force re-download
mix orchard.download --force

Configuration

You can configure the AXe version in your config.exs:

config :orchard,
  axe_version: "1.0.0"

Or provide a custom path to an existing AXe binary:

config :orchard,
  axe_path: "/usr/local/bin/AXe"