aboutsummaryrefslogtreecommitdiff
path: root/pdebuild
diff options
context:
space:
mode:
authorLoïc Minier <lool@dooz.org>2009-12-13 17:14:25 +0100
committerLoïc Minier <lool@dooz.org>2009-12-13 17:14:25 +0100
commit5b2af749e5cb111cbdd278f5d35970905f783f07 (patch)
tree216c7221132df50325dd8626ea062e2e0cc1bf99 /pdebuild
parentd2b1fc3aaf80035f8999fc947a7536c476321aea (diff)
downloadpbuilder-5b2af749e5cb111cbdd278f5d35970905f783f07.tar
pbuilder-5b2af749e5cb111cbdd278f5d35970905f783f07.tar.gz
Factor "exec >" + "exec 2>&1" together
Diffstat (limited to 'pdebuild')
-rw-r--r--pdebuild3
1 files changed, 1 insertions, 2 deletions
diff --git a/pdebuild b/pdebuild
index d58e40b..f9e79b5 100644
--- a/pdebuild
+++ b/pdebuild
@@ -36,8 +36,7 @@ CHANGES="${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes"
if [ -z "${PBUILDER_BUILD_LOGFILE}" ]; then
PBUILDER_BUILD_LOGFILE="../${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.build"
- exec > >(tee "${PBUILDER_BUILD_LOGFILE}");
- exec 2>&1
+ exec > >(tee "${PBUILDER_BUILD_LOGFILE}") 2>&1
fi