fix: rename .generated → generated for easy access
Hidden dot-prefix removed for ergonomic shell navigation. Still gitignored — build output is user-specific. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
.generated/
|
generated/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|||||||
4
build.py
4
build.py
@@ -238,7 +238,7 @@ def print_summary(config: dict, total_personas: int, total_variants: int):
|
|||||||
print(f"BUILD COMPLETE")
|
print(f"BUILD COMPLETE")
|
||||||
print(f" Personas: {total_personas}")
|
print(f" Personas: {total_personas}")
|
||||||
print(f" Variants: {total_variants}")
|
print(f" Variants: {total_variants}")
|
||||||
print(f" Output: .generated/")
|
print(f" Output: generated/")
|
||||||
|
|
||||||
if config:
|
if config:
|
||||||
user = config.get("user", {}).get("name", "?")
|
user = config.get("user", {}).get("name", "?")
|
||||||
@@ -264,7 +264,7 @@ def main():
|
|||||||
print("No personas/ directory found.")
|
print("No personas/ directory found.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
output_dir = root / ".generated"
|
output_dir = root / "generated"
|
||||||
|
|
||||||
# Load config
|
# Load config
|
||||||
config = load_config(root)
|
config = load_config(root)
|
||||||
|
|||||||
Reference in New Issue
Block a user