aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lbu.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbu.in b/lbu.in
index e3761d1..527b9e7 100644
--- a/lbu.in
+++ b/lbu.in
@@ -234,7 +234,7 @@ cmd_package() {
init_tmpdir tmpdir
if [ -d "$LBU_PREPACKAGE" ]; then
- run-parts "$LBU_PREPACKAGE" || return 1
+ run-parts "$LBU_PREPACKAGE" >&2 || return 1
fi
[ -n "$ENCRYPTION" ] && suff="$suff.$ENCRYPTION"
@@ -304,7 +304,7 @@ cmd_package() {
[ $rc -eq 0 ] && vecho "Created $pkg"
fi
if [ -d "$LBU_POSTPACKAGE" ]; then
- run-parts "$LBU_POSTPACKAGE"
+ run-parts "$LBU_POSTPACKAGE" >&2
fi
return $rc
}