Merge pull request #735 from cyian-1756/patchScriptFixes

Now uses update_change_list to update change list inststead of just inserting a string at a hardcoded line number
This commit is contained in:
cyian-1756 2018-06-23 18:28:45 -04:00 committed by GitHub
commit 173758eec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,15 +65,8 @@ subprocess.call(['git', 'grep', '<version>' + nextVersion + '</version>', 'pom.x
commitMessage = nextVersion + ': ' + message commitMessage = nextVersion + ': ' + message
changeLogLine = ' \"' + commitMessage + '\",\n' changeLogLine = ' \"' + commitMessage + '\",\n'
dataFile = open("ripme.json", "r") update_change_list(changeLogLine)
ripmeJsonLines = dataFile.readlines()
ripmeJsonLines.insert(3, changeLogLine)
outputContent = ''.join(ripmeJsonLines)
dataFile.close()
dataFile = open("ripme.json", "w")
dataFile.write(outputContent)
dataFile.close()
print("Building ripme") print("Building ripme")
subprocess.call(["mvn", "clean", "compile", "assembly:single"]) subprocess.call(["mvn", "clean", "compile", "assembly:single"])