deb: cross-compilation, ephemeral contexts, local builds #1

Merged
vhaudiquet merged 41 commits from experimental-cross into main 2025-12-25 17:10:47 +00:00
Showing only changes of commit 616aee9ac0 - Show all commits

View File

@@ -153,7 +153,8 @@ pub fn setup_environment(
let dpkg_architecture = String::from_utf8( let dpkg_architecture = String::from_utf8(
context::current() context::current()
.command("dpkg-architecture") .command("dpkg-architecture")
.arg(format!("-a{}", arch)) .arg("-a")
.arg(arch)
.output()? .output()?
.stdout, .stdout,
)?; )?;