[PATCH v1 1/4] automation: Only filter build-*/ in gitignore

Bertrand Marquis posted 4 patches 3 years, 5 months ago
There is a newer version of this series
[PATCH v1 1/4] automation: Only filter build-*/ in gitignore
Posted by Bertrand Marquis 3 years, 5 months ago
...because there are some script in automation corresponding to the
build-* filter (build-test.sh and build-each-commit.sh)

Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com>
---
Changes in v1:
- instead of removing build-*, replace it by build-*/ (suggested by Jan)
- rename patch accordingly
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e3fe06cd13ed..27881c976432 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,13 +38,13 @@ dist
 stubdom/*.tar.gz
 
 autom4te.cache/
+build-*/
 config.log
 config.status
 config.cache
 config/Toplevel.mk
 config/Paths.mk
 
-build-*
 dist/*
 docs/tmp.*
 docs/html/
-- 
2.25.1
Re: [PATCH v1 1/4] automation: Only filter build-*/ in gitignore
Posted by Jan Beulich 3 years, 5 months ago
On 24.08.2022 16:57, Bertrand Marquis wrote:
> ...because there are some script in automation corresponding to the
> build-* filter (build-test.sh and build-each-commit.sh)
> 
> Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com>

Acked-by: Jan Beulich <jbeulich@suse.com>