Codebase list dpkg-repack / e00d054
When catching errors during package processing, print them. We are catching processing errors, but were not printing them anymore when we switch to en eval block. Do so to restore proper error reporting. Fixes: commit e7d7a6c461a650507074d63a55461f1b6c525a18 Guillem Jover 3 years ago
2 changed file(s) with 2 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
55 * Run the autopkgtest from within the autopkgtest temporary directory.
66 * Use AUTOPKGTEST_TMP instead of deprecated ADTTMP.
77 * Do not make missing conffiles a fatal error. Closes: #947951
8 * When catching errors during package processing, print them.
89
910 -- Guillem Jover <guillem@debian.org> Wed, 23 Dec 2020 04:33:48 +0100
1011
351351 Archive_Package($pkgname);
352352 1;
353353 } or do {
354 print { \*STDERR } "$@";
354355 warning("problems found processing $pkgname, the package may be broken");
355356 };
356357 }