diff --git a/patch.py b/patch.py index 0232ba7d..99b719eb 100644 --- a/patch.py +++ b/patch.py @@ -8,8 +8,8 @@ from hashlib import sha256 # - update version in a few places # - insert new line in ripme.json with message # - build ripme -# - add the hash of the lastest binary to ripme.json - +# - add the hash of the latest binary to ripme.json +# - commit all changes message = input('message: ') @@ -89,3 +89,4 @@ update_hash(file_hash) subprocess.call(['git', 'add', '-u']) subprocess.call(['git', 'commit', '-m', commitMessage]) subprocess.call(['git', 'tag', nextVersion]) +print("Remember to run `git push origin master` before release.py")