summaryrefslogtreecommitdiff
path: root/sources/update_all.sh
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2013-01-11 10:00:47 +0100
committerJochen Topf <jochen@topf.org>2013-01-11 10:00:47 +0100
commit34fbbac684e0636c06442760f1d3b409959ec52a (patch)
tree2d58158fcf850821ae2717e685345ecb642b4c8c /sources/update_all.sh
parentb08c013ab6a32a90c428e2ec52b217b1b812390f (diff)
downloadtaginfo-34fbbac684e0636c06442760f1d3b409959ec52a.tar
taginfo-34fbbac684e0636c06442760f1d3b409959ec52a.tar.gz
Use curl instead of wget (no need to have two dependencies when one is enough)
Diffstat (limited to 'sources/update_all.sh')
-rwxr-xr-xsources/update_all.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/update_all.sh b/sources/update_all.sh
index c9fbc40..db1fa56 100755
--- a/sources/update_all.sh
+++ b/sources/update_all.sh
@@ -50,7 +50,7 @@ for source in $SOURCES_DOWNLOAD; do
echo "====================================="
echo "Downloading $source..."
mkdir -p $DIR/$source
- wget --quiet -O $DIR/download/taginfo-$source.db.bz2 http://taginfo.openstreetmap.org/download/taginfo-$source.db.bz2
+ curl --silent --output $DIR/download/taginfo-$source.db.bz2 http://taginfo.openstreetmap.org/download/taginfo-$source.db.bz2
bzcat $DIR/download/taginfo-$source.db.bz2 >$DIR/$source/taginfo-$source.db
echo "Done."
done