Fix erroneous quotes around WGET_ARGS (fixes #210)
This commit is contained in:
parent
7b82bcae9d
commit
ce176ae32e
4
run.sh
4
run.sh
@ -50,10 +50,10 @@ if [ "$1" = "import" ]; then
|
|||||||
|
|
||||||
if [ -n "$DOWNLOAD_PBF" ]; then
|
if [ -n "$DOWNLOAD_PBF" ]; then
|
||||||
echo "INFO: Download PBF file: $DOWNLOAD_PBF"
|
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
|
if [ -n "$DOWNLOAD_POLY" ]; then
|
||||||
echo "INFO: Download PBF-POLY file: $DOWNLOAD_POLY"
|
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
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user