Message ID | 20241113210608.2907-1-reatmon@ti.com |
---|---|
State | Accepted |
Delegated to: | Ryan Eatmon |
Headers | show |
Series | [oe-layersetup,master,1/5] .gitignore: Fix paths | expand |
diff --git a/.gitignore b/.gitignore index db9d2d8..5ccd768 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ -build -conf -sources -downloads -bitbake.lock -pseudodone +/build +/sources +/downloads +/bitbake.lock +/pseudodone *.dot
We really want to ignore the paths in the .gitignore as if a build was run in this directory. So that means we should anchor the entries to the top using /. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- .gitignore | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)