Files
firefrost-operations-manual/automation/logs/rename-design-bible_completed_20260209_200623.sh
2026-02-09 20:06:23 -06:00

21 lines
519 B
Bash
Executable File

#!/bin/bash
cd ~/firefrost-work/firefrost-operations-manual
# Rename in docs/ (source location)
git mv docs/design-bible-v1.1.md docs/design-bible.md
# Update project-files/ (copy for Claude Project)
rm project-files/design-bible-v1_1.md
cp docs/design-bible.md project-files/design-bible.md
# Commit
git add -A
git commit -m "Remove version number from design-bible filename
Version tracked inside file (currently v1.1).
Keeps filename stable like infrastructure manifest."
git push
echo "Design bible renamed!"