summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Mielczarek <ted@mielczarek.org>2019-01-25 10:56:36 -0500
committerTed Mielczarek <ted@mielczarek.org>2019-01-25 12:03:22 -0500
commit22194a000ac877c9a29096cffd215e52a06a6b40 (patch)
tree4533157f74ec63aeaad7fa2d9f3ace30c0eb730a
parent8747bc9c28e2c1f762f6fd0f9235f056dbc74ba0 (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--.gitignore2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 91419086..f5c3381c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,4 +16,4 @@ __bindgen.*
csmith-fuzzing/platform.info
# Backups of test cases from C-Reduce
-**.orig
+**/*.orig