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)