From b317e8ff03931639e0cebec5bd44a8c5e4318293 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 13 Aug 2014 22:22:38 +0200 Subject: [PATCH] common/hooks: delta creation: don't hide stderr --- common/hooks/pre-pkg/01-xdelta_repolist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/pre-pkg/01-xdelta_repolist.sh b/common/hooks/pre-pkg/01-xdelta_repolist.sh index 389f5260946..9c73c3e057f 100644 --- a/common/hooks/pre-pkg/01-xdelta_repolist.sh +++ b/common/hooks/pre-pkg/01-xdelta_repolist.sh @@ -5,7 +5,7 @@ hook() { # create links to preserve old versions of repodata find $XBPS_REPOSITORY -name '*-repodata' | while read; do - rm "${REPLY}.genVcdiff" 2> /dev/null + rm "${REPLY}.genVcdiff" cp "${REPLY}" "${REPLY}.genVcdiff" done }