[workflows:executables] restore 'gallery-dl_ubuntu' name

This commit is contained in:
Mike Fährmann
2024-05-28 22:17:53 +02:00
parent 53aadb0c44
commit 05f8435e09
2 changed files with 3 additions and 6 deletions

View File

@@ -22,15 +22,12 @@ def main():
else:
label = ""
if args.os:
os = args.os.partition("-")[0].lower()
if os == "ubuntu":
os = "linux"
label += os
label += args.os.partition("-")[0].lower()
if args.arch == "x86":
label += "_x86"
if args.print:
return print(label)
return print(label.replace("ubuntu", "linux"))
name = "gallery-dl"
if label: