From b114ab063d90ebc16c741bd755e996da24f0b2a6 Mon Sep 17 00:00:00 2001 From: "j.foucher" Date: Thu, 19 Feb 2026 12:58:46 +0100 Subject: [PATCH] Broaden .gitignore: use glob for all plugin Binaries/Intermediate Replaces the plugin-specific path with a wildcard pattern so any future plugin under Plugins/ is automatically excluded from version control. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 068671f..11f2f78 100644 --- a/.gitignore +++ b/.gitignore @@ -5,9 +5,9 @@ Unreal/PS_AI_Agent/Intermediate/ Unreal/PS_AI_Agent/Saved/ ConvAI/Convai/Binaries/ -# Plugin build artifacts -Unreal/PS_AI_Agent/Plugins/PS_AI_Agent_ElevenLabs/Binaries/ -Unreal/PS_AI_Agent/Plugins/PS_AI_Agent_ElevenLabs/Intermediate/ +# All plugin build artifacts (Binaries + Intermediate for any plugin) +Unreal/PS_AI_Agent/Plugins/*/Binaries/ +Unreal/PS_AI_Agent/Plugins/*/Intermediate/ # UE5 generated solution files Unreal/PS_AI_Agent/*.sln