]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add arm64 support to packager for windows and osx (#29723)
authorVasilis <vasilis@pikachu.systems>
Fri, 9 Aug 2024 13:01:13 +0000 (15:01 +0200)
committerGitHub <noreply@github.com>
Fri, 9 Aug 2024 13:01:13 +0000 (23:01 +1000)
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

Content.Packaging/ServerPackaging.cs

index d9ca57c4d11f4dde7a39afd2ef0487e6fc063771..1a04c745d127e2c604e0781e2814e7c56a3599ca 100644 (file)
@@ -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),