From 221bc5f6aa8f86ef9254433e0c2fab32fd1218fa Mon Sep 17 00:00:00 2001 From: Thomas Frans Date: Thu, 20 Mar 2025 16:47:04 +0100 Subject: [PATCH] git: fix incorrect subprojects ignore in `.gitignore` Ignoring the entire `/subprojects/` directory prevents the next rule from including just the Meson wrap files. Instead, ignore all the files in the directory which allows the intended behavior. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 623384e78..02cf3c093 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/subprojects/ +/subprojects/* !/subprojects/*.wrap