diff options
author | Kyle K <[email protected]> | 2022-09-16 10:58:29 -0700 |
---|---|---|
committer | Kyle K <[email protected]> | 2022-09-16 10:58:29 -0700 |
commit | 49870baea4ccf47a2cc530fd66981805c6c12e5b (patch) | |
tree | 1fa94b891c615015819c18b98e7117326e98d772 /.gitignore | |
parent | 344006b856ee58fe6bc43f1f291744977c19ae66 (diff) | |
download | yuzu-android-49870baea4ccf47a2cc530fd66981805c6c12e5b.tar.gz yuzu-android-49870baea4ccf47a2cc530fd66981805c6c12e5b.zip |
GIT: Modify .gitignore to ignore wildcard for build directories
Helps if you have multiple build folders. There are other, dark ways to
hide extra build folders from git, but this is better.
See: https://github.com/citra-emu/citra/pull/6130
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index cdf37962a..a5f7248c7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Build directory -[Bb]uild/ +[Bb]uild*/ doc-build/ # Generated source files |