Create directories if necessary
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
263329e06d
commit
738e13d73a
1 changed files with 7 additions and 3 deletions
|
@ -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 \
|
||||
|
|
Loading…
Add table
Reference in a new issue