From 439d00dd117cb0b155878ffb836b1a0000f776d9 Mon Sep 17 00:00:00 2001 From: cyian-1756 Date: Wed, 30 May 2018 14:41:21 -0400 Subject: [PATCH] Uncommented needed code --- patch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/patch.py b/patch.py index b19ce837..ca63cbf3 100644 --- a/patch.py +++ b/patch.py @@ -72,9 +72,9 @@ dataFile = open("ripme.json", "w") dataFile.write(outputContent) dataFile.close() -# subprocess.call(['git', 'add', '-u']) -# subprocess.call(['git', 'commit', '-m', commitMessage]) -# subprocess.call(['git', 'tag', nextVersion]) +subprocess.call(['git', 'add', '-u']) +subprocess.call(['git', 'commit', '-m', commitMessage]) +subprocess.call(['git', 'tag', nextVersion]) print("Building ripme") subprocess.call(["mvn", "clean", "compile", "assembly:single"]) print("Hashing .jar file")