From b9c7f7519c1ab7e04e203967ebee69e53ae3994b Mon Sep 17 00:00:00 2001 From: Brian Ernst Date: Mon, 10 Nov 2025 14:09:48 -0800 Subject: [PATCH] Added note about why Binaries folder isn't included. --- source/project/unreal_clean.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/project/unreal_clean.py b/source/project/unreal_clean.py index 6c837f7..298e622 100644 --- a/source/project/unreal_clean.py +++ b/source/project/unreal_clean.py @@ -27,6 +27,11 @@ ignore_folders = { # NOTE: These are recursively deleted. dirs_to_delete = { ".vs", + # The Binaries folder commonly contains checked-in files. This script + # isn't designed to check against version control, it's supposed to + # be a quick simple script to quickly get back disk space. Uncomment + # this folder at your own peril. + #"Binaries", "DerivedDataCache", "Intermediate", "Saved",