ensure we are not accidentally using main

This commit is contained in:
burnettk 2023-01-06 11:08:30 -05:00
parent 8a99d1db6c
commit c346f59e94
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,12 @@ if [[ -z "${BPMN_SPEC_ABSOLUTE_DIR:-}" ]]; then
fi
fi
export BPMN_SPEC_ABSOLUTE_DIR
pushd "$BPMN_SPEC_ABSOLUTE_DIR"
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
fi
export FLASK_SESSION_SECRET_KEY=super_secret_key