From e9b296b9a5deec05e6bede763285ac9ea2d15cba Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 9 Oct 2024 07:21:25 -0500 Subject: [PATCH] Don't add untracked files in an adabot bundle update --- adabot/circuitpython_bundle.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/adabot/circuitpython_bundle.py b/adabot/circuitpython_bundle.py index 50722f9..e94d88a 100644 --- a/adabot/circuitpython_bundle.py +++ b/adabot/circuitpython_bundle.py @@ -352,8 +352,7 @@ def commit_updates(bundle_path, update_info): ) ) message = "\n\n".join(message) - git.add(".") - git.commit(message=message) + git.commit("-a", message=message) os.chdir(working_directory)