summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2024-04-04 15:05:40 +0200
committerFlorian Schmaus <flow@gentoo.org>2024-04-04 15:05:50 +0200
commit296d5d3a60efb93d3020a972bb9064c9376d4443 (patch)
tree094974cf887ccb93a25cb7ee9b073ae7fac69dc8
parenttexlive-common.eclass: efmtutil-sys: use ebegin/eend and log output (diff)
downloadtex-overlay-296d5d3a60efb93d3020a972bb9064c9376d4443.tar.gz
tex-overlay-296d5d3a60efb93d3020a972bb9064c9376d4443.tar.bz2
tex-overlay-296d5d3a60efb93d3020a972bb9064c9376d4443.zip
use 2> instead of &>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rw-r--r--eclass/texlive-common.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/texlive-common.eclass b/eclass/texlive-common.eclass
index 0cc61f7..9cbb81b 100644
--- a/eclass/texlive-common.eclass
+++ b/eclass/texlive-common.eclass
@@ -202,7 +202,7 @@ efmtutil-sys() {
ebegin "Rebuilding TexLive formats"
"${EPREFIX}"/usr/bin/fmtutil-sys --all \
> "${T}"/fmutil-sys-all.log \
- &> "${T}"/fmutil-sys-all.err.log
+ 2> "${T}"/fmutil-sys-all.err.log
eend $? || die -n "fmtutil-sys returned non-zero exit status ${?}"
else
ewarn "Cannot run fmtutil-sys for some reason."