From 190a49f9669ccd97d54226e85d16d2da873c25d2 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 25 Feb 2015 13:05:32 +0100 Subject: fixup last commit --- bin/reproducible_html_repo_stats.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'bin/reproducible_html_repo_stats.sh') diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh index e8077f08..6dd12b2b 100755 --- a/bin/reproducible_html_repo_stats.sh +++ b/bin/reproducible_html_repo_stats.sh @@ -50,7 +50,7 @@ for PKG in $SOURCES ; do CRUFT="$CRUFT ${VERSION}" fi done - EXP=$(rmadison -s experimental $PKG | cut -d "|" -f2|xargs echo) + EXPERIMENTAL=$(rmadison -s experimental $PKG | cut -d "|" -f2|xargs echo) # # format output # @@ -74,16 +74,17 @@ for PKG in $SOURCES ; do if [ ! -z "$CRUFT" ] ; then CRUFT="$(echo $CRUFT|sed 's# #
#g')" fi - if [ ! -z "$EXP" ] ; then + if [ ! -z "$EXPERIMENTAL" ] ; then CEXP="" if [ "${PKG:0:3}" == "lib" ] ; then PREFIX=${PKG:0:4} else PREFIX=${PKG:0:1} fi - for i in $EXP ; do + for i in $EXPERIMENTAL ; do CEXP="$CEXP$i
" done + EXPERIMENTAL=$CEXP fi # # write output @@ -92,7 +93,7 @@ for PKG in $SOURCES ; do write_page "$BET" write_page "$CSID" write_page "$CRUFT" - write_page "$CEXP" + write_page "$EXPERIMENTAL" write_page "" done write_page "

" -- cgit v1.2.3-54-g00ecf