浏览代码

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 <brandon.maier@collins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Brandon Maier 1 年之前
父节点
当前提交
ea3c465304
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .gitignore

+ 1 - 1
.gitignore

@@ -1,4 +1,4 @@
-/output
+/output*
 /dl
 /dl
 /.auto.deps
 /.auto.deps
 /.config.cmd
 /.config.cmd