From 6fa01228c094bd36bf7393705bf9c20302430e2a Mon Sep 17 00:00:00 2001 From: JMARyA Date: Wed, 16 Apr 2025 09:27:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 3f714f8..035f014 100644 --- a/src/main.rs +++ b/src/main.rs @@ -161,10 +161,7 @@ pub fn build(image: &str, ci: bool) { Command::new("bash") .stderr(Stdio::inherit()) .stdout(Stdio::inherit()) - .args([ - "-c", - &format!("mkdir /build && {}", docker_script.join(";")), - ]) + .args(["-c", docker_script.join(";").as_str()]) .status() .expect("Failed to run build") } else {