mirror of
https://github.com/jmagar/unraid-mcp
synced 2026-04-21 13:37:53 +00:00
fix(ci): remove backups/ and logs/ directory tracking; keep simple gitignore entries
This commit is contained in:
parent
4b8eebd11c
commit
78644cc674
2 changed files with 2 additions and 8 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -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/
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue