From 1ed03ee259024f09a7fca378e6e483d93eb118e5 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Jul 2026 19:54:34 -0400 Subject: Remove redundant VCS URL messages --- src/lib/core/utils.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/core/utils.c b/src/lib/core/utils.c index ed10ef3..eee8bec 100644 --- a/src/lib/core/utils.c +++ b/src/lib/core/utils.c @@ -1106,7 +1106,6 @@ int check_python_package_dependencies(const char *srcdir, struct StrList **out_f if (out_files) { strlist_append(out_files, (char *) configs[i]); } - printf("\nERROR: VCS requirement(s) detected in %s:\n", configfile); for (size_t j = 0; j < count; j++) { char *record = strlist_item(data, j); lstrip(record); @@ -1120,7 +1119,6 @@ int check_python_package_dependencies(const char *srcdir, struct StrList **out_f if (out_matches) { strlist_append(out_matches, match); } - printf("[%zu] %s\n", j, match); guard_free(match); } guard_strlist_free(&data); -- cgit