.gitignore: only ignore build directories
The "build*" pattern is ignoring any file that begins with "build". Add a trailing "/" to limit the effect of the pattern to directories. This continues to ignore build directories, but allows adding files whose names begin with build, which will be used later to create a build.rst file for documenting west's build command. Signed-off-by: Marti Bolivar <marti@foundries.io>
This commit is contained in:
parent
00895795fa
commit
e3eb8e776a
1 changed files with 1 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -7,7 +7,7 @@
|
|||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
build*
|
||||
build*/
|
||||
cscope.*
|
||||
.dir
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue