From c1526aea5ca50a66e11362fe1b450f6ab844dba8 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Fri, 7 Jan 2022 16:53:50 +0100 Subject: [PATCH] build: Fix *.wrap exclude pattern in .gitignore The current rules trigger git to to complain with $ git add subprojects/openssl.wrap The following paths are ignored by one of your .gitignore files: subprojects We need to keep the parent directory in the tracking domain and just filter out all sub directories and files except the wrap files. Signed-off-by: Daniel Wagner --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 304d2a60..2fafa121 100644 --- a/.gitignore +++ b/.gitignore @@ -29,5 +29,5 @@ cscope.* .build -subprojects +subprojects/* !subprojects/*.wrap -- 2.50.1