diff --git a/src/platform/multiplatform.rs b/src/platform/multiplatform.rs index 54dac2d..2fda754 100644 --- a/src/platform/multiplatform.rs +++ b/src/platform/multiplatform.rs @@ -38,7 +38,9 @@ impl MultiplatformPlatform { Err(e) => { let is_not_found = matches!( e, - PakkerError::ProjectNotFound(_) | PakkerError::InvalidResponse(_) + PakkerError::ProjectNotFound(_) + | PakkerError::InvalidResponse(_) + | PakkerError::ConfigError(_) ); if is_not_found { Ok(None) } else { Err(e) } },