diff options
author | Fredrik Aslund <fredrik.aslund@umu.se> | 2016-11-04 13:01:21 +0100 |
---|---|---|
committer | Fredrik Aslund <fredrik.aslund@umu.se> | 2016-11-04 13:01:21 +0100 |
commit | 8fb29ca073ee46dc0afc0bb1c3a6d72c4072d391 (patch) | |
tree | 85c62bf68e956aa258398e55de77fd07a0e56122 /scripts | |
parent | a2f257f018d23b09fa202d4290bf7af8164f1d91 (diff) |
ignore blank lines
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/aggregate.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/aggregate.sh b/scripts/aggregate.sh index 065ad9cb..685457b8 100755 --- a/scripts/aggregate.sh +++ b/scripts/aggregate.sh @@ -15,7 +15,7 @@ else touch $last_aggregate_ts fi -grep -v -e '^#' $ODIR/metadata.lst | (while read url cert; do +grep -v -e '^#' $ODIR/metadata.lst | grep . | (while read url cert; do cfile="" if [ "x$cert" != "x" ]; then cfile=$DIR/certs/$cert |