platform: ignore config errors in multiplatform lookup
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If1dbcb7967510e17f1d49228106067536a6a6964
This commit is contained in:
parent
754927c55a
commit
019a1b7752
1 changed files with 3 additions and 1 deletions
|
|
@ -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) }
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue