Skip to content

Commit

Permalink
Accept the default message when there are no conflicts.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 30, 2022
1 parent b2240be commit 0d67782
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v7.14.0
=======

* ``update-projects`` no longer prompts to edit the commit message.

v7.13.1
=======

Expand Down
2 changes: 1 addition & 1 deletion jaraco/develop/update-projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def update_project(name):
with temp_checkout(name):
if not is_skeleton():
return
proc = subprocess.Popen(['git', 'pull', 'gh://jaraco/skeleton'])
proc = subprocess.Popen(['git', 'pull', 'gh://jaraco/skeleton', '--no-edit'])
code = proc.wait()
if code:
subprocess.check_call(['git', 'mergetool'])
Expand Down

0 comments on commit 0d67782

Please sign in to comment.