Skip to content

Commit

Permalink
fix for release.py bump
Browse files Browse the repository at this point in the history
  • Loading branch information
marshall committed Jun 24, 2012
1 parent ae77458 commit e0cd3d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion release.py
Expand Up @@ -125,7 +125,11 @@ def bump(self):
open("setup.json", "w").write(setup_json)
message = "bump to version %s" % bump_version

os.execv("/usr/bin/git", ("commit", "-v", "-m", message, "-e"))
self.run("git", "add", "setup.json")

# TODO -- full path is needed for execv, detect this
git = "/usr/bin/git"
os.execv(git, (git, "commit", "-v", "-m", message, "-e"))

def main(self):
command = "help"
Expand Down

0 comments on commit e0cd3d6

Please sign in to comment.