🚑️ fix
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2025-04-16 09:19:54 +02:00
parent 316b2ac288
commit a92710062e
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -152,7 +152,9 @@ pub fn build(image: &str, ci: bool) {
]);
}
if !ci {
docker_script.extend([move_pkg]);
}
// Build the Docker run command
let status = if ci {
@ -220,6 +222,7 @@ pub fn build(image: &str, ci: bool) {
if !status.success() {
eprintln!("Build failed with status: {:?}", status);
std::process::exit(status.code().unwrap());
}
}