Merge branch 'master' of https://github.com/Zode/FlaxEngine into Zode-master
This commit is contained in:
@@ -192,11 +192,9 @@ namespace Flax.Build
|
||||
case TargetPlatform.Linux:
|
||||
{
|
||||
rid = $"linux-{arch}";
|
||||
ridFallback = "";
|
||||
ridFallback = Utilities.ReadProcessOutput("dotnet", "--info").Split('\n').FirstOrDefault(x => x.StartsWith(" RID:"), "").Replace("RID:", "").Trim();
|
||||
if (string.IsNullOrEmpty(dotnetPath))
|
||||
dotnetPath ??= SearchForDotnetLocationLinux();
|
||||
if (dotnetPath == null)
|
||||
ridFallback = Utilities.ReadProcessOutput("dotnet", "--info").Split('\n').FirstOrDefault(x => x.StartsWith(" RID:"), "").Replace("RID:", "").Trim();
|
||||
break;
|
||||
}
|
||||
case TargetPlatform.Mac:
|
||||
|
||||
Reference in New Issue
Block a user