.gitignore: Don't ignore directories that have the .d extenion.
.d directories are common for holding config and init scripts. They are being ignored with the global *.d pattern which is meant to ignore Make dependency files.
This commit is contained in:
parent
b4b413e2f4
commit
172aaa5e5c
2 changed files with 1 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@
|
||||||
*.asm
|
*.asm
|
||||||
*.bin
|
*.bin
|
||||||
*.d
|
*.d
|
||||||
|
!*.d/
|
||||||
*.dSYM
|
*.dSYM
|
||||||
*.elf
|
*.elf
|
||||||
*.exe
|
*.exe
|
||||||
|
|
1
boards/sim/sim/sim/src/.gitignore
vendored
1
boards/sim/sim/sim/src/.gitignore
vendored
|
@ -1,2 +1 @@
|
||||||
/etctmp*
|
/etctmp*
|
||||||
!/etc/**
|
|
||||||
|
|
Loading…
Reference in a new issue