Add build number to output folder

This commit is contained in:
CorpNewt 2022-07-14 09:16:05 -05:00 committed by GitHub
parent 46a95c2b3e
commit 602a1e5d78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class gibMacOS:
def download_prod(self, prod, dmg = False):
# Takes a dictonary of details and downloads it
self.resize()
name = "{} - {} {}".format(prod["product"], prod["version"], prod["title"]).replace(":","").strip()
name = "{} - {} {} ({})".format(prod["product"], prod["version"], prod["title"], prod["build"]).replace(":","").strip()
dl_list = []
for x in prod["packages"]:
if not x.get("URL",None):