Drop Commit Message

This commit is contained in:
Mykola Grymalyuk
2022-01-19 11:29:56 -07:00
parent 711c512258
commit 299fed997d
5 changed files with 7 additions and 12 deletions

View File

@@ -43,10 +43,9 @@ def patch_info_plist():
plist = plistlib.load(Path(plist_path).open("rb"))
print("- Adding Github Dictionary")
plist["Github"] = {
"Commit Message": argsv[0],
"Branch": argsv[1],
"Commit URL": argsv[2],
"Commit Date": argsv[3],
"Branch": argsv[0],
"Commit URL": argsv[1],
"Commit Date": argsv[2],
}
print("- Writing Plist")
plistlib.dump(plist, Path(plist_path).open("wb"), sort_keys=True)