mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
fix: do not return error on docker prune
There are still some issues, I'm removing errors on it to see if it acts better
This commit is contained in:
@@ -540,7 +540,7 @@ fn docker_prune_images(envs: Vec<(&str, &str)>) -> Result<(), SimpleError> {
|
||||
Duration::minutes(BUILD_DURATION_TIMEOUT_MIN),
|
||||
) {
|
||||
Ok(_) => {}
|
||||
Err(e) => return Err(e),
|
||||
Err(e) => error!("error while puring {}. {}", prune, e.message),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user