Skip to content

Commit

Permalink
Add arm64 support to packager for windows and osx (space-wizards#29723)
Browse files Browse the repository at this point in the history
Wanted to package a server for the funny on my macbook and noticed it was not working cause of this... now it will workie :3
  • Loading branch information
VasilisThePikachu authored and themias committed Aug 9, 2024
1 parent 511dfdb commit 575c2d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Content.Packaging/ServerPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ public static class ServerPackaging
private static readonly List<PlatformReg> Platforms = new()
{
new PlatformReg("win-x64", "Windows", true),
new PlatformReg("win-arm64", "Windows", true),
new PlatformReg("linux-x64", "Linux", true),
new PlatformReg("linux-arm64", "Linux", true),
new PlatformReg("osx-x64", "MacOS", true),
new PlatformReg("osx-arm64", "MacOS", true),
// Non-default platforms (i.e. for Watchdog Git)
new PlatformReg("win-x86", "Windows", false),
new PlatformReg("linux-x86", "Linux", false),
Expand Down

0 comments on commit 575c2d7

Please sign in to comment.