+depanneur (0.16.10.7) unstable; urgency=high
+
+ * Upgrade to 0.16.10.7
+ * Hotfix for not terinating cpu stats
+
+ -- Hyokeun Jeon <hyokeun.jeon@samsung.com> Sun, 28 Mar 2021 10:00:00 +0800
+
depanneur (0.16.10.6) unstable; urgency=high
* Upgrade to 0.16.10.6
info("build logs can be found in:\n $localrepo/$dist/$arch/logs");
info("build roots located in:\n $scratch_dir.*");
if (%errors || %expansion_errors || @export_errors || ($succeeded_packages == 0 && @skipped == 0)) {
- exit 1;
+ return 1;
}
-
+ return 0;
}
#---------------------------------------------------------------------
my_system("rm -rf bsr_profiling_report");
my_system("rm -rf $localrepo/$dist/$arch/bsr_profiling_report");
+ if ($dryrun) {
+ return;
+ }
+
my @preview_orders = ();
if ($preordered_list ne "") {
last;
}
update_repo();
+ profiling_report();
build_report();
exit $ret;
}
sleep(1);
}
update_repo();
-build_report();
profiling_report();
+exit build_report();
-exit 0