Create directories for validator output if not exist
This commit is contained in:
parent
01eb589d13
commit
6706137670
1 changed files with 5 additions and 0 deletions
|
@ -111,6 +111,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 (
|
||||
|
@ -233,6 +234,10 @@ fi
|
|||
|
||||
# Running the validation
|
||||
|
||||
if [ -n "${DUMP-}" ]; then
|
||||
mkdir -p "$DUMP"
|
||||
fi
|
||||
|
||||
VALIDATION="$TMPDIR/validation.json"
|
||||
"$PYTHON" "$SUBWAYS_PATH/process_subways.py" ${QUIET:+-q} \
|
||||
-x "$FILTERED_DATA" -l "$VALIDATION" \
|
||||
|
|
Loading…
Add table
Reference in a new issue