We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a099f57 commit dbc55c4Copy full SHA for dbc55c4
builder/frameworks/component_manager.py
@@ -484,8 +484,10 @@ def _remove_ignored_lib_includes(self) -> None:
484
f.write(content)
485
self._log_change(f"Updated build file ({total_removed} total removals)")
486
487
- except Exception as e:
+ except (IOError, OSError) as e:
488
self._log_change(f"Error processing libraries: {str(e)}")
489
+ except Exception as e:
490
+ self._log_change(f"Unexpected error processing libraries: {str(e)}")
491
492
def _validate_changes(self, original_content: str, new_content: str) -> bool:
493
"""
0 commit comments