From: Vasilis Date: Fri, 9 Aug 2024 13:01:13 +0000 (+0200) Subject: Add arm64 support to packager for windows and osx (#29723) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=873c314aec0a87e3e160d94e36511f11ff849c2c;p=space-station-14.git Add arm64 support to packager for windows and osx (#29723) 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 --- diff --git a/Content.Packaging/ServerPackaging.cs b/Content.Packaging/ServerPackaging.cs index d9ca57c4d1..1a04c745d1 100644 --- a/Content.Packaging/ServerPackaging.cs +++ b/Content.Packaging/ServerPackaging.cs @@ -13,9 +13,11 @@ public static class ServerPackaging private static readonly List 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),