From 208cc9690f87e92d1542fd5d9a679a386ed0d8de Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Thu, 25 Dec 2025 14:35:35 +0100 Subject: [PATCH] mmdebstrap: use unshare --- src/deb/cross.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/deb/cross.rs b/src/deb/cross.rs index 770667c..8cd849d 100644 --- a/src/deb/cross.rs +++ b/src/deb/cross.rs @@ -76,6 +76,7 @@ impl EphemeralContextGuard { let status = context::current() .command("mmdebstrap") .arg("--variant=buildd") + .arg("--mode=unshare") .arg("--format=tar") .arg(series) .arg(tarball_path.to_string_lossy().to_string())