From 2aeb83117ad7264b71cd4980187b29031a59953f Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Wed, 1 Jun 2022 16:33:57 -0700 Subject: [PATCH] .gitignore: Qualify the path for the ignored build directory. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was origally added for scons, which is gone, but keep it around since enough people use "build" for their meson builds that you probably shouldn't add anything to git under that name. The qualifying '/' is needed because we have a .gitlab-ci/build/ directory where we do check in code. Reviewed-by: Marcin Ĺšlusarz Part-of: --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 825ad5fd16564..9b156306415a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ *.pyc *.pyo *.out -build +/build