From 616aee9ac0ea02b686c46a6e62f7b84154e84048 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Thu, 25 Dec 2025 16:14:53 +0100 Subject: [PATCH] cross: reformat --- src/deb/cross.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/deb/cross.rs b/src/deb/cross.rs index 8cd849d..1ce8f27 100644 --- a/src/deb/cross.rs +++ b/src/deb/cross.rs @@ -153,7 +153,8 @@ pub fn setup_environment( let dpkg_architecture = String::from_utf8( context::current() .command("dpkg-architecture") - .arg(format!("-a{}", arch)) + .arg("-a") + .arg(arch) .output()? .stdout, )?;