mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Remove Rosetta requirement for macOS installers (#9933)
Even though the binaries are "universal" (compatible with both arm64 and x86_64), this configuration must be provided in the Distribution XML in order to prevent macOS from installing Rosetta when the user goes to install the package. Verified with Suspicious Package. For #9932 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [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
This commit is contained in:
parent
4669d8c474
commit
ec8067e9b3
2 changed files with 2 additions and 0 deletions
1
changes/rosetta
Normal file
1
changes/rosetta
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Remove requirement for Rosetta in installation of macOS packages on Apple Silicon. The binaries have been "universal" for a while now, but the installer still required Rosetta until now.
|
||||
|
|
@ -39,6 +39,7 @@ var macosDistributionTemplate = template.Must(template.New("").Option("missingke
|
|||
<bundle id="{{.Identifier}}" path="" />
|
||||
</bundle-version>
|
||||
</pkg-ref>
|
||||
<options customize="never" hostArchitectures="arm64,x86_64" require-scripts="false" allow-external-scripts="false" />
|
||||
</installer-gui-script>
|
||||
`))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue