Fixed: Set musl status at compile time

[common]
pull/6/head
ta264 3 years ago committed by Qstick
parent 853a15087d
commit 00c2211d45

@ -97,16 +97,14 @@ namespace NzbDrone.Common.EnvironmentInfo
}
else
{
return IsMusl() ? Os.LinuxMusl : Os.Linux;
#if ISMUSL
return Os.LinuxMusl;
#else
return Os.Linux;
#endif
}
}
private static bool IsMusl()
{
var output = RunAndCapture("ldd", "/bin/ls");
return output.Contains("libc.musl");
}
private static string RunAndCapture(string filename, string args)
{
var processStartInfo = new ProcessStartInfo

@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0;net472</TargetFrameworks>
<DefineConstants Condition="'$(RuntimeIdentifier)' == 'linux-musl-x64' or '$(RuntimeIdentifier)' == 'linux-musl-arm64'">ISMUSL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNet4.SocksProxy" Version="1.4.0.1" />

Loading…
Cancel
Save