From ea3c465304d1d7a2891d9f47775996855461f117 Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Wed, 24 Jul 2024 21:23:21 +0000 Subject: [PATCH] gitignore: ignore multiple output directories Developers may have multiple output directories when building multiple boards in parallel. A previous commit attempted to gitignore new output directories automatically but broke some things (commit a14c862c08 "Create a .gitignore file in the CANONICAL_O directory"). To provide some support, ignore anything in the Buildroot directory that starts with "output". This is a bit more cumbersome, but doesn't break packages based on Python maturin. Signed-off-by: Brandon Maier Signed-off-by: Thomas Petazzoni --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bb02d9f572..ec5768d053 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/output +/output* /dl /.auto.deps /.config.cmd