Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/rsync-generation/
Date: Fri, 29 Jul 2016 09:01:50
Message-Id: 1469782897.e23dff0039387660848650a0a7ca0099456a7b4e.grobian@gentoo
1 commit: e23dff0039387660848650a0a7ca0099456a7b4e
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 29 09:01:37 2016 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 29 09:01:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e23dff00
7
8 scripts/rsync-generation/refresh-mirror: fix syntax
9
10 scripts/rsync-generation/refresh-mirror.sh | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/scripts/rsync-generation/refresh-mirror.sh b/scripts/rsync-generation/refresh-mirror.sh
14 index bcfdd8f..4020553 100755
15 --- a/scripts/rsync-generation/refresh-mirror.sh
16 +++ b/scripts/rsync-generation/refresh-mirror.sh
17 @@ -27,7 +27,7 @@ else
18 }
19 # get a free filedescriptor in FD
20 exec {FD}>/tmp/rsync-master-busy
21 - (((genandpush | tee -a "${LOGFILE}") ${FD}>&1 1>&2 2>&${FD} \
22 + (((genandpush | tee -a "${LOGFILE}") {FD}>&1 1>&2 2>&${FD} \
23 | tee -a "${LOGFILE}") 2> /dev/null)
24 echo "generation done $(date)" >> ${LOGFILE}
25 exec {FD}>&-