Skip to content

Commit

Permalink
main: Update gitignore to only ignore executables.
Browse files Browse the repository at this point in the history
A line such as "v3tool" is not specific enough as it does not only
ignore files named "v3tool", but also directories. This is problematic
when adding new files to the directory "/cmd/v3tool/".
  • Loading branch information
jholdstock committed Aug 18, 2023
1 parent de79ce7 commit 1df3008
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Executables built by this repo.
vspd.exe
vspd
/cmd/vspd/vspd.exe
/cmd/vspd/vspd
/vspd.exe
/vspd

vote-validator.exe
vote-validator
/cmd/vote-validator/vote-validator.exe
/cmd/vote-validator/vote-validator
/vote-validator.exe
/vote-validator

v3tool.exe
v3tool
/cmd/v3tool/v3tool.exe
/cmd/v3tool/v3tool
/v3tool.exe
/v3tool

vote-validator.log

Expand Down

0 comments on commit 1df3008

Please sign in to comment.