From 68a36245d54afb065f2a22cd217fe89ac90567aa Mon Sep 17 00:00:00 2001 From: Frede Hundewadt Date: Thu, 7 Dec 2023 08:48:24 +0100 Subject: [PATCH] Update get-iso --- get-iso | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/get-iso b/get-iso index 77f2abb..51cb620 100755 --- a/get-iso +++ b/get-iso @@ -12,11 +12,12 @@ import time import requests.exceptions from pathlib import Path -PROG_VERSION = "0.4" + DEF_URL = \ "https://gitlab.manjaro.org/webpage/iso-info/-/raw/master/file-info.json" FOLDER = Path.home() PROG_NAME = os.path.basename(__file__) +PROG_VERSION = "0.5" GNU_URL = "https://www.gnu.org/licenses/gpl.html" REVIEW_URL = \ "https://api.github.com/repos/manjaro/release-review/releases/latest" @@ -193,11 +194,11 @@ def main(): break if zip_result and sha_result: - subprocess.run(["7z", "-y", "x", f"{zipname}"], - cwd=f"{FOLDER}") subprocess.run(["7z", "-y", "t", f"{zipname}"], cwd=f"{FOLDER}") - print("Wait for checksum to complete ...") + subprocess.run(["7z", "-y", "x", f"{zipname}"], + cwd=f"{FOLDER}") + print("\nWait for checksum to complete ...") subprocess.run(["sha256sum", "-c", f"{shaname}"], cwd=f"{FOLDER}") else: