Skip to content

Commit

Permalink
Fix gitignore so ripgrep works
Browse files Browse the repository at this point in the history
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
  • Loading branch information
luser committed Jan 25, 2019
1 parent 8747bc9 commit 22194a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ __bindgen.*
csmith-fuzzing/platform.info

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

0 comments on commit 22194a0

Please sign in to comment.