Skip to content

Commit

Permalink
Ignore *.pid.lock
Browse files Browse the repository at this point in the history
Some popular applications (for example, Phusion Passenger) leave `*.pid.lock` file(s). For example, when you type `passenger start` with simple express app listening on port 3000, it leaves the following files:

* `passenger.3000.pid` (removed when passenger stops)
* `passenger.3000.log`
* `passenger.3000.pid.lock`

While `*pid` and `*.log` are ignored, `*.pid.lock` remains unignored. Phusion Passenger is quite popular, and `*.pid.lock` file should be ignored.
  • Loading branch information
ro31337 authored Jul 2, 2016
1 parent e662d21 commit 55157bf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Node.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ npm-debug.log*
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
Expand Down

0 comments on commit 55157bf

Please sign in to comment.