From 738e13d73a532f55bc9353914cb1e3a3909932e7 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 23 Apr 2022 00:32:38 +0200 Subject: [PATCH] Create directories if necessary Signed-off-by: Alexander Borsuk --- scripts/process_subways.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/process_subways.sh b/scripts/process_subways.sh index a92c034..95d881d 100755 --- a/scripts/process_subways.sh +++ b/scripts/process_subways.sh @@ -1,5 +1,5 @@ -#!/bin/bash -set -e -u +#!/usr/bin/env bash +#set -euxo pipefail if [ $# -gt 0 -a \( "${1-}" = "-h" -o "${1-}" = '--help' \) ]; then cat << EOF @@ -109,6 +109,7 @@ if [ ! -f "$SUBWAYS_PATH/process_subways.py" ]; then fi TMPDIR="${TMPDIR:-$SUBWAYS_PATH}" +mkdir -p "$TMPDIR" # Downloading the latest version of the subways script if [ -n "${GIT_PULL-}" ]; then ( @@ -129,7 +130,7 @@ fi if [ -n "${NEED_FILTER-}" ]; then # If $PLANET_METRO file doesn't exist, create it - + if [ -n "${PLANET_METRO-}" ]; then EXT=${PLANET_METRO##*.} if [ ! "$EXT" = "osm" -a ! "$EXT" == "xml" -a ! "$EXT" = "o5m" ]; then @@ -230,6 +231,9 @@ if [ -n "${NEED_TO_REMOVE_POLY-}" ]; then fi # Running the validation +if [ -n "${DUMP-}" ]; then + mkdir -p "$DUMP" +fi VALIDATION="$TMPDIR/validation.json" "$PYTHON" "$SUBWAYS_PATH/process_subways.py" -q \