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 9d0e95b commit b968fc1Copy full SHA for b968fc1
1 file changed
src/specify_cli/presets.py
@@ -2550,6 +2550,8 @@ def _find_in_subdirs(base_dir: Path) -> Optional[Path]:
2550
if isinstance(fm_strategy, str) and fm_strategy.lower() in VALID_PRESET_STRATEGIES:
2551
strategy = fm_strategy.lower()
2552
except (yaml.YAMLError, OSError):
2553
+ # Best-effort legacy frontmatter parsing: keep default
2554
+ # strategy ("replace") when content is unreadable/invalid.
2555
pass
2556
version = metadata.get("version", "?") if metadata else "?"
2557
layers.append({
0 commit comments