From 8594e00430fde0ddd250713e5693ad7c6927b5c1 Mon Sep 17 00:00:00 2001 From: terraputix Date: Thu, 9 Apr 2026 19:16:11 +0200 Subject: [PATCH] fix: swiftly is stuck during dependency check on Fedora --- Sources/LinuxPlatform/Linux.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/LinuxPlatform/Linux.swift b/Sources/LinuxPlatform/Linux.swift index b9d2e824..fafb3dce 100644 --- a/Sources/LinuxPlatform/Linux.swift +++ b/Sources/LinuxPlatform/Linux.swift @@ -330,7 +330,7 @@ public struct Linux: Platform { } return false case "yum": - let result = try await run(.name("yum"), arguments: ["list", "installed", package], output: .discarded) + let result = try await run(.name("yum"), arguments: ["list", "--installed", package], output: .string(limit: 100 * 1024)) return result.terminationStatus.isSuccess default: return true