Create directories for validator output if not exist

This commit is contained in:
Alexey Zakharenkov 2023-01-11 15:42:01 +03:00 committed by Alexey Zakharenkov
parent 01eb589d13
commit 6706137670

View file

@ -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" \