From 520653a8706185f4c182f78d6f373c91a40eab54 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Fri, 6 Mar 2015 09:29:50 +0100 Subject: Add history database to download page. --- sources/update_all.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sources') diff --git a/sources/update_all.sh b/sources/update_all.sh index b511ecd..33376de 100755 --- a/sources/update_all.sh +++ b/sources/update_all.sh @@ -77,8 +77,10 @@ for source in $SOURCES_CREATE; do bzip2 -9 -c $DIR/$source/taginfo-$source.db >$DIR/download/taginfo-$source.db.bz2 & done sleep 5 # wait for bzip2 on the smaller dbs to finish -bzip2 -9 -c $DIR/taginfo-master.db >$DIR/download/taginfo-master.db.bz2 & -bzip2 -9 -c $DIR/taginfo-search.db >$DIR/download/taginfo-search.db.bz2 & + +for db in master history search; do + bzip2 -9 -c $DIR/taginfo-$db.db >$DIR/download/taginfo-$db.db.bz2 & +done wait echo "Done." -- cgit v1.2.3