mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
New flow for `fleetctl --package --type=msi` on macOS using arm64 processor (M1, M2, etc.) - wine must be installed locally. See ./orbit/tools/build/install-wine-macos.sh and https://wiki.winehq.org/MacOS for reference. - --local-wix-dir can be used to point to a local Wix3 installation (using this switch requires a current Fleet EE subscription) #15463 PR for docs: https://github.com/fleetdm/fleet/pull/16459 # Checklist for submitter If some of the following don't apply, delete the relevant line. <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Noah Talerman <47070608+noahtalerman@users.noreply.github.com>
11 lines
412 B
Go
11 lines
412 B
Go
package eefleetctl
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func LocalWixDirFlag(dest *string) *cli.StringFlag {
|
|
return &cli.StringFlag{
|
|
Name: "local-wix-dir",
|
|
Usage: "Use local install of WiX instead of Docker Hub (only available on Windows and macOS w/ WiX v3). This functionality is licensed under the Fleet EE License. Usage requires a current Fleet EE subscription.",
|
|
Destination: dest,
|
|
}
|
|
}
|