Show progress output for wget by default (fixes #156)

This commit is contained in:
Alexander Overvoorde 2020-10-27 20:55:02 +01:00
parent bedff2a880
commit 953232051f
1 changed files with 2 additions and 2 deletions

4
run.sh
View File

@ -50,10 +50,10 @@ if [ "$1" = "import" ]; then
if [ -n "$DOWNLOAD_PBF" ]; then
echo "INFO: Download PBF file: $DOWNLOAD_PBF"
wget -nv "$DOWNLOAD_PBF" -O /data.osm.pbf
wget "$WGET_ARGS" "$DOWNLOAD_PBF" -O /data.osm.pbf
if [ -n "$DOWNLOAD_POLY" ]; then
echo "INFO: Download PBF-POLY file: $DOWNLOAD_POLY"
wget -nv "$DOWNLOAD_POLY" -O /data.poly
wget "$WGET_ARGS" "$DOWNLOAD_POLY" -O /data.poly
fi
fi