Skip to content

Commit 5481fca

Browse files
d3zd3zLaszloLango
authored andcommitted
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 [email protected]
1 parent e522e74 commit 5481fca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build/*
44

55
# IDE related files
66
nbproject
7-
**.sublime-project
8-
**.sublime-workspace
7+
*.sublime-project
8+
*.sublime-workspace
99
.idea
1010

1111
# Random Trash
@@ -14,9 +14,9 @@ nbproject
1414
*~
1515
core
1616
vgcore.*
17-
**.orig
18-
**.directory
19-
**.patch
17+
*.orig
18+
*.directory
19+
*.patch
2020
.tags*
2121
cscope.*
2222
__pycache__

0 commit comments

Comments
 (0)