Skip to content

Commit

Permalink
Chore: Keep Tmp Pids Directory
Browse files Browse the repository at this point in the history
Because:
* Puma needs the tmp/pids directory to run.

This commit:
* Removes tmp/pids from gitignore.
  • Loading branch information
KevinMulhern committed Jun 4, 2022
1 parent dfb9d52 commit 0f5be7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@
/public/assets

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep

# scm revert files
**.orig
Expand Down
Empty file added tmp/pids/.keep
Empty file.

0 comments on commit 0f5be7a

Please sign in to comment.