From 575adb91fc72bbce7b896455fa80d00ffe67b7f6 Mon Sep 17 00:00:00 2001 From: Ben Rog-Wilhelm Date: Fri, 21 Oct 2022 14:06:42 -0500 Subject: [PATCH] Fix .gitignore ignores part of the committed repo. (cherry picked from commit 37d68929e8ab3a1cab550a4cb83152eb13012f8c) --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cdbde3d78..a70b2696a 100644 --- a/.gitignore +++ b/.gitignore @@ -108,15 +108,18 @@ logs/ x64/ build/ -# Do not ignore x86 folders anywhere under thirdparty libraries -!thirdparty/**/x86/ - bld/ [Bb]in/ [Oo]bj/ *.debug *.dSYM +# Do not ignore arch-specific folders anywhere under thirdparty libraries +!thirdparty/**/x64/ +!thirdparty/**/x86/ +!thirdparty/**/arm/ +!thirdparty/**/arm64/ + # Visual Studio cache/options directory .vs/