mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 15:17:58 +00:00
13 lines
388 B
Bash
13 lines
388 B
Bash
![]() |
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
OUTDIR=./src/gometa/metadata
|
||
|
|
||
|
# Note: this assumes that datahub has already been built with `./gradlew build`.
|
||
|
DATAHUB_ROOT=../datahub
|
||
|
cp $DATAHUB_ROOT/metadata-events/mxe-schemas/src/renamed/avro/com/linkedin/mxe/MetadataChangeEvent.avsc .
|
||
|
|
||
|
rm -r $OUTDIR || true
|
||
|
python scripts/avro_codegen.py MetadataChangeEvent.avsc $OUTDIR
|
||
|
rm MetadataChangeEvent.avsc
|