From df3475270cc3e77f44d58ec80141be6757fdcab8 Mon Sep 17 00:00:00 2001 From: cyian-1756 Date: Fri, 15 Jun 2018 22:37:36 -0400 Subject: [PATCH] patch.py now reminds users to run git push before release.py --- patch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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")