From 83f26e1abec42fa5ddd98db0c66b6476c0522102 Mon Sep 17 00:00:00 2001 From: Volker von Hoesslin Date: Thu, 20 Feb 2020 08:46:46 +0100 Subject: [PATCH] fix indent --- run.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/run.sh b/run.sh index e27f064..53ee429 100755 --- a/run.sh +++ b/run.sh @@ -37,19 +37,19 @@ if [ "$1" = "import" ]; then # Download Luxembourg as sample if no data is provided if [ ! -f /data.osm.pbf ] && [ -z "$DL_PBF" ]; then - echo "WARNING: No import file at /data.osm.pbf, so importing Luxembourg as example..." - DL_PBF="http://download.geofabrik.de/europe/luxembourg-latest.osm.pbf" - DL_PBF_POLY="http://download.geofabrik.de/europe/luxembourg.poly" + echo "WARNING: No import file at /data.osm.pbf, so importing Luxembourg as example..." + DL_PBF="http://download.geofabrik.de/europe/luxembourg-latest.osm.pbf" + DL_PBF_POLY="http://download.geofabrik.de/europe/luxembourg.poly" + fi + + if [ -n "$DL_PBF" ]; then + echo "INFO: Download PBF file: $DL_PBF" + wget -nv "$DL_PBF" -O /data.osm.pbf + if [ -n "$DL_PBF_POLY" ]; then + echo "INFO: Download PBF-POLY file: $DL_PBF_POLY" + wget -nv "$DL_PBF_POLY" -O /data.poly + fi fi - - if [ -n "$DL_PBF" ]; then - echo "INFO: Download PBF file: $DL_PBF" - wget -nv "$DL_PBF" -O /data.osm.pbf - if [ -n "$DL_PBF_POLY" ]; then - echo "INFO: Download PBF-POLY file: $DL_PBF_POLY" - wget -nv "$DL_PBF_POLY" -O /data.poly - fi - fi if [ "$UPDATES" = "enabled" ]; then # determine and set osmosis_replication_timestamp (for consecutive updates)