Skip to content

Commit

Permalink
Merge pull request #383 from jepler/bundle-no-add-untracked
Browse files Browse the repository at this point in the history
Don't add untracked files in an adabot bundle update
  • Loading branch information
jepler authored Oct 9, 2024
2 parents 6705480 + e9b296b commit 4e0086b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions adabot/circuitpython_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 4e0086b

Please sign in to comment.