fix setting the bpmn dir in start scripts w/ burnettk
This commit is contained in:
parent
9a62ee04aa
commit
4211d13d07
|
@ -18,13 +18,13 @@ if [[ -z "${BPMN_SPEC_ABSOLUTE_DIR:-}" ]]; then
|
|||
exit 1
|
||||
fi
|
||||
fi
|
||||
export BPMN_SPEC_ABSOLUTE_DIR
|
||||
pushd "$BPMN_SPEC_ABSOLUTE_DIR"
|
||||
|
||||
pushd "$BPMN_SPEC_ABSOLUTE_DIR" >/dev/null 2>&1
|
||||
if [[ "$(git rev-parse --abbrev-ref HEAD)" == "main" ]]; then
|
||||
>&2 echo "ERROR: please do not use the main branch of sample-process-models. use dev"
|
||||
exit 1
|
||||
fi
|
||||
popd
|
||||
popd >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
echo "$BPMN_SPEC_ABSOLUTE_DIR"
|
||||
realpath "$BPMN_SPEC_ABSOLUTE_DIR"
|
||||
|
|
|
@ -19,7 +19,6 @@ fi
|
|||
|
||||
BPMN_SPEC_ABSOLUTE_DIR=$(./bin/find_sample_process_models)
|
||||
export BPMN_SPEC_ABSOLUTE_DIR
|
||||
echo "$BPMN_SPEC_ABSOLUTE_DIR"
|
||||
|
||||
export FLASK_SESSION_SECRET_KEY=super_secret_key
|
||||
export APPLICATION_ROOT="/"
|
||||
|
|
Loading…
Reference in New Issue