Fix continent download (#91)

There was a missing `{` in the mv after download.
pull/80/head^2
Nathan 2020-01-12 07:34:55 -06:00 zatwierdzone przez mazano
rodzic 702c100125
commit 2fdf603a70
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ if [[ ! -f ${CONTINENT_LOCKFILE} && -z ${COUNTRY} ]]; then \
echo "${BASE_URL}/${CONTINENT}-latest.osm.pbf"
wget -c --no-check-certificate ${BASE_URL}/${CONTINENT}-latest.osm.pbf -O /tmp/${CONTINENT}.pbf
mv /tmp/$CONTINENT}.pbf /home/settings/country.pbf
mv /tmp/${CONTINENT}.pbf /home/settings/country.pbf
touch ${CONTINENT_LOCKFILE}