From f51a6f5462a8371931f2d1ec2f4361df978e3725 Mon Sep 17 00:00:00 2001 From: DevTekVE Date: Thu, 18 Jul 2024 16:15:55 +0200 Subject: [PATCH] Add .git-crypt and .venv to the blacklist This commit updates the release_files.py script to include .git-crypt and .venv in the list of blacklisted files. This ensures that these directories are excluded from the release process, maintaining cleaner and more secure releases. --- release/release_files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release/release_files.py b/release/release_files.py index 31d1518d74..cf244bb72f 100755 --- a/release/release_files.py +++ b/release/release_files.py @@ -88,6 +88,8 @@ sunnypilot_blacklist = [ "codecov.yml", "conftest.py", "poetry.lock", + ".git-crypt/", + ".venv" ] # Merge the blacklists