Fixing a typo :/

This commit is contained in:
Andrew Spiering
2023-09-17 18:48:54 -07:00
parent 69e54d7f88
commit 824ee9ec7f

View File

@@ -217,7 +217,7 @@ namespace Flax.Build
// then lets assume we are building for it and thus should using that rid and that dotnet path
if (architecture == TargetArchitecture.ARM64 && (Configuration.BuildArchitectures != null && Configuration.BuildArchitectures[0] == TargetArchitecture.x64))
{
rid = $"osx-64";
rid = $"osx-x64";
dotnetPath = Path.Combine(dotnetPath, "x64");
architecture = TargetArchitecture.x64;
}