From 953232051f6407fff8fd711fed86edc3e43d56de Mon Sep 17 00:00:00 2001 From: Alexander Overvoorde Date: Tue, 27 Oct 2020 20:55:02 +0100 Subject: [PATCH] Show progress output for wget by default (fixes #156) --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 9e5ee36..10d6b40 100755 --- a/run.sh +++ b/run.sh @@ -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