Skip to content

Commit

Permalink
Fix erroneous quotes around WGET_ARGS (fixes Overv#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Overv committed Sep 3, 2021
1 parent 7b82bca commit ce176ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ce176ae

Please sign in to comment.