Skip to content

Commit 9532320

Browse files
committed
Show progress output for wget by default (fixes #156)
1 parent bedff2a commit 9532320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ if [ "$1" = "import" ]; then
5050

5151
if [ -n "$DOWNLOAD_PBF" ]; then
5252
echo "INFO: Download PBF file: $DOWNLOAD_PBF"
53-
wget -nv "$DOWNLOAD_PBF" -O /data.osm.pbf
53+
wget "$WGET_ARGS" "$DOWNLOAD_PBF" -O /data.osm.pbf
5454
if [ -n "$DOWNLOAD_POLY" ]; then
5555
echo "INFO: Download PBF-POLY file: $DOWNLOAD_POLY"
56-
wget -nv "$DOWNLOAD_POLY" -O /data.poly
56+
wget "$WGET_ARGS" "$DOWNLOAD_POLY" -O /data.poly
5757
fi
5858
fi
5959

0 commit comments

Comments
 (0)