Skip to content

Commit 22194a0

Browse files
committed
Fix gitignore so ripgrep works
ripgrep was failing to search in the bindgen repo: ``` ./.gitignore: line 19: error parsing glob '**.orig': invalid use of **; must be one path component ``` Per the gitignore docs it seems like ripgrep is correct and this line is invalid: https://git-scm.com/docs/gitignore#_pattern_format
1 parent 8747bc9 commit 22194a0

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
@@ -16,4 +16,4 @@ __bindgen.*
1616
csmith-fuzzing/platform.info
1717

1818
# Backups of test cases from C-Reduce
19-
**.orig
19+
**/*.orig

0 commit comments

Comments
 (0)