fix(ci): remove backups/ and logs/ directory tracking; keep simple gitignore entries

This commit is contained in:
Jacob Magar 2026-04-05 08:59:15 -04:00
parent 4b8eebd11c
commit 78644cc674
2 changed files with 2 additions and 8 deletions

6
.gitignore vendored
View file

@ -87,11 +87,9 @@ pip-log.txt
/DESTRUCTIVE_ACTIONS.md
client_secret_*.apps.googleusercontent.com.json
backups/*
!backups/.gitkeep
logs/*
!logs/.gitkeep
.worktrees
# Personal local cheatsheet (never commit)
CLAUDE.md.local
logs/
backups/

View file

@ -409,8 +409,6 @@ echo
echo "── 16. Required directories ──"
for req_dir in \
"backups" \
"logs" \
"tests" \
"skills"; do
if [[ -d "$PROJECT_DIR/$req_dir" ]]; then
@ -422,8 +420,6 @@ done
# Check .gitkeep files
for gitkeep in \
"backups/.gitkeep" \
"logs/.gitkeep"; do
if [[ -f "$PROJECT_DIR/$gitkeep" ]]; then
pass "$gitkeep exists"
else