diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/aggregate.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/aggregate.sh b/scripts/aggregate.sh index 91a37144..5bc3be8c 100755 --- a/scripts/aggregate.sh +++ b/scripts/aggregate.sh @@ -3,10 +3,10 @@ DIR=`pwd` ODIR=$1 -(while read url cert; do +grep -v -e '^#' $ODIR/metadata.lst | (while read url cert; do cfile="" if [ "x$cert" != "x" ]; then cfile=$DIR/certs/$cert fi $DIR/scripts/pull-and-verify.sh $url $ODIR $cfile -done) < $ODIR/metadata.lst +done) |