diff options
author | Ted Mielczarek <ted@mielczarek.org> | 2019-01-25 10:56:36 -0500 |
---|---|---|
committer | Ted Mielczarek <ted@mielczarek.org> | 2019-01-25 12:03:22 -0500 |
commit | 22194a000ac877c9a29096cffd215e52a06a6b40 (patch) | |
tree | 4533157f74ec63aeaad7fa2d9f3ace30c0eb730a | |
parent | 8747bc9c28e2c1f762f6fd0f9235f056dbc74ba0 (diff) |
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
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,4 +16,4 @@ __bindgen.* csmith-fuzzing/platform.info # Backups of test cases from C-Reduce -**.orig +**/*.orig |