Fix .gitignore syntax (#1721)
Change instances of **.ext in the .gitignore to just *.ext. I think the intent was to match these patterns in any directory, which is what will happen with simple patterns. The '**' construct is meant to match zero or more full paths, but it must be the sole component of the path. Discovered by a warning from ripgrep. JerryScript-DCO-1.0-Signed-off-by: David Brown david.brown@linaro.org
This commit is contained in:
committed by
László Langó
parent
e522e740a7
commit
5481fca060
+5
-5
@@ -4,8 +4,8 @@ build/*
|
|||||||
|
|
||||||
# IDE related files
|
# IDE related files
|
||||||
nbproject
|
nbproject
|
||||||
**.sublime-project
|
*.sublime-project
|
||||||
**.sublime-workspace
|
*.sublime-workspace
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
# Random Trash
|
# Random Trash
|
||||||
@@ -14,9 +14,9 @@ nbproject
|
|||||||
*~
|
*~
|
||||||
core
|
core
|
||||||
vgcore.*
|
vgcore.*
|
||||||
**.orig
|
*.orig
|
||||||
**.directory
|
*.directory
|
||||||
**.patch
|
*.patch
|
||||||
.tags*
|
.tags*
|
||||||
cscope.*
|
cscope.*
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|||||||
Reference in New Issue
Block a user