From ce176ae32e22f9c51e46c26396feec316db9c294 Mon Sep 17 00:00:00 2001 From: Alexander Overvoorde Date: Fri, 3 Sep 2021 12:46:37 +0200 Subject: [PATCH] Fix erroneous quotes around WGET_ARGS (fixes #210) --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index dcee9d6..f09d913 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 "$WGET_ARGS" "$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 "$WGET_ARGS" "$DOWNLOAD_POLY" -O /data.poly + wget $WGET_ARGS "$DOWNLOAD_POLY" -O /data.poly fi fi