summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2015-03-06 09:29:50 +0100
committerJochen Topf <jochen@topf.org>2015-03-06 09:34:33 +0100
commit520653a8706185f4c182f78d6f373c91a40eab54 (patch)
tree344df2c7e15d864836e1570e57f5240060059c14 /sources
parentb87fe508a5ff02860249c494e5370b2bd608167a (diff)
downloadtaginfo-520653a8706185f4c182f78d6f373c91a40eab54.tar
taginfo-520653a8706185f4c182f78d6f373c91a40eab54.tar.gz
Add history database to download page.
Diffstat (limited to 'sources')
-rwxr-xr-xsources/update_all.sh6
1 files changed, 4 insertions, 2 deletions
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."