Skip to content

Commit eec3bb7

Browse files
committed
fix: resolve ai_config_manifest.yaml relative to the script so bootstrap runs from repo root (not just from inside bootstrap/)
1 parent 79d5930 commit eec3bb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bootstrap/create_configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def main():
696696
return
697697

698698
# Load manifest
699-
manifest_path = Path("ai_config_manifest.yaml")
699+
manifest_path = Path(__file__).parent / "ai_config_manifest.yaml"
700700
if not manifest_path.exists():
701701
print(" ai_config_manifest.yaml not found")
702702
print(" Make sure you're running this from the bootstrap/ directory")

0 commit comments

Comments
 (0)