Skip to content

Commit ce176ae

Browse files
committed
Fix erroneous quotes around WGET_ARGS (fixes #210)
1 parent 7b82bca commit ce176ae

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 "$WGET_ARGS" "$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 "$WGET_ARGS" "$DOWNLOAD_POLY" -O /data.poly
56+
wget $WGET_ARGS "$DOWNLOAD_POLY" -O /data.poly
5757
fi
5858
fi
5959

0 commit comments

Comments
 (0)