Skip to content

Commit 70d162e

Browse files
committed
Refine .gitignore rule for local folder
Previously, every subfolder named `local` would be excluded from git tracking. This can be a footgun, e.g., I had some leftover junk files in `library/src/local` that went unnoticed for a long time and caused inexplicable behavior in sbt tasks. Now, exclude only the top-level `local`.
1 parent 5c51b7b commit 70d162e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ testlogs/
6161
/.cache-tests
6262

6363
# Put local stuff here
64-
local/
64+
/local/
6565

6666
/bin/.cp
6767

0 commit comments

Comments
 (0)