From 92201e4b894a0ede7ea9f3f6a91ad1e540c04c5d Mon Sep 17 00:00:00 2001 From: nakst <> Date: Sat, 22 Jan 2022 10:16:30 +0000 Subject: [PATCH] log more in GetSource --- util/build.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/build.c b/util/build.c index 825f2f8..4b9a54d 100644 --- a/util/build.c +++ b/util/build.c @@ -1326,6 +1326,8 @@ void GetSource(const char *parameters, const char *checksum) { #endif if (checksum) { + fprintf("Checking validity of downloading file...\n"); + int checksumLength = strlen(checksum); for (int i = 0; checksum[i]; i++) { @@ -1342,8 +1344,11 @@ void GetSource(const char *parameters, const char *checksum) { } } + fprintf("Decompressing...\n"); if (CallSystemF("tar -x%cf %s", decompressFlag, name)) exit(1); + fprintf("Moving...\n"); if (CallSystemF("mv %.*s bin/source", (int) (url - folder), folder)) exit(1); + fprintf("Done.\n"); } void RunTests(int singleTest) {