From fb58bb3832f3d0b6881a823d462f45e1477c60a0 Mon Sep 17 00:00:00 2001 From: David Brown Date: Thu, 6 Apr 2017 10:03:55 -0600 Subject: [PATCH] Fix .gitignore syntax 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 david.brown@linaro.org --- .gitignore | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3edc8ce34d..e40ce94700 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,8 @@ build/* # IDE related files nbproject -**.sublime-project -**.sublime-workspace +*.sublime-project +*.sublime-workspace .idea # Random Trash @@ -14,9 +14,9 @@ nbproject *~ core vgcore.* -**.orig -**.directory -**.patch +*.orig +*.directory +*.patch .tags* cscope.* __pycache__