Add `-a` option to `git commit` call in release.py.
authorW. Trevor King <wking@drexel.edu>
Thu, 21 Oct 2010 11:57:43 +0000 (07:57 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 21 Oct 2010 11:57:43 +0000 (07:57 -0400)
release.py

index ae6a9f344979afff86ecf8643615fc145ff7dc2d..341019c725f696201c2bbdc31b10e236816bb60a 100755 (executable)
@@ -76,7 +76,7 @@ def remove_makefile_libbe_version_dependencies():
 
 def commit(commit_message):
     print 'commit current status:', commit_message
-    invoke(['git', 'commit', '-m', commit_message])
+    invoke(['git', 'commit', '-a', '-m', commit_message])
 
 def tag(tag):
     print 'tag current revision', tag