From ca30c7da983a24caeddb2e73a5f6fe1022d880a2 Mon Sep 17 00:00:00 2001 From: meowmeowcat <68463158+meowmeowmeowcat@users.noreply.github.com> Date: Sat, 8 Jan 2022 12:24:12 +0800 Subject: [PATCH] Show a message before printing hash values of files --- print-hash.py | 1 + 1 file changed, 1 insertion(+) diff --git a/print-hash.py b/print-hash.py index 52d698e..e239b5a 100755 --- a/print-hash.py +++ b/print-hash.py @@ -8,6 +8,7 @@ blake2_256 = hashlib.blake2b(digest_size=256 // 8) file_list = os.listdir(os.path.abspath(os.getenv("INPUT_PACKAGES_DIR"))) for file in file_list: + print("Showing hash values of files to be uploaded:") print(file) print("")