From b8d81beb1e8989cb754e223d51b6c219ba4ffd6e Mon Sep 17 00:00:00 2001 From: Lukas Petr Date: Sun, 28 Jun 2026 23:18:39 +0200 Subject: [PATCH] Fix diffkemp-patches for SELinux The diffkemp-patches were not correctly mounted on systems with enabled SELinux, this commit should fix it. --- src/container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/container.ts b/src/container.ts index 49dce8c..8459e7c 100644 --- a/src/container.ts +++ b/src/container.ts @@ -37,7 +37,7 @@ export class Container implements Disposable, IContainer { */ constructor(abortSignal?: AbortSignal) { this.id = execSync( - "podman run -di -v'.diffkemp-patches:/.diffkemp-patches' diffkemp-prs:latest", + "podman run -di -v'.diffkemp-patches:/.diffkemp-patches:z' diffkemp-prs:latest", { encoding: "utf-8", },