generate-archive-lists: Print only package name/version
authorChristoph Berg <myon@debian.org>
Thu, 19 Dec 2024 10:19:04 +0000 (11:19 +0100)
committerChristoph Berg <myon@debian.org>
Thu, 19 Dec 2024 10:19:04 +0000 (11:19 +0100)
The full package row was too wide to fit into an email, so the error
never made it to me.

repo/bin/generate-archive-lists

index 9759cd75dfc1b549e4d49e18e6bc50d16b882ed8..b17a14c791e60f3ad9f244f201c2a5fb1025239a 100755 (executable)
@@ -114,7 +114,7 @@ done
 
 # alert about any failed uploads
 psql -XAt <<EOF
-SELECT 'failed sourcefile upload:', * FROM sourcefile WHERE upload IS FALSE;
-SELECT 'failed package upload:', * FROM package WHERE upload IS FALSE;
+SELECT 'failed sourcefile upload:', source, srcversion FROM sourcefile WHERE upload IS FALSE;
+SELECT 'failed package upload:', package, version, arch FROM package WHERE upload IS FALSE;
 SELECT 'failed pool/main/p/package/index.html upload:', * FROM src WHERE upload IS FALSE;
 EOF