We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf2cf7 commit c5553fcCopy full SHA for c5553fc
1 file changed
src/code/Utils.cs
@@ -2333,7 +2333,7 @@ internal static bool CheckAuthenticodeSignature(
2333
ConcurrentQueue<string> warningMsgs)
2334
{
2335
// Because authenticode and catalog verifications are only applicable on Windows, we allow all packages by default to be installed on unix systems.
2336
- if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
+ if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
2337
2338
warningMsgs.Enqueue("Authenticode check cannot be performed on Linux or MacOS.");
2339
return true;
0 commit comments