mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 15:42:09 +00:00
10 lines
341 B
Bash
10 lines
341 B
Bash
![]() |
#!/bin/sh
|
||
|
SCHEMA_FILE_NAME=datahub_ingestion_schema.json
|
||
|
SCHEMA_ROOT_DIR=../static/schemas
|
||
|
if [ -f "${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}" ]; then
|
||
|
rm ${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}
|
||
|
fi
|
||
|
|
||
|
echo "Generating Json schema..."
|
||
|
python gen_json_schema.py ../../docs/generated/ingestion/config_schemas/ ${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}
|