13 строки
352 B
Bash
Executable File
13 строки
352 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Generate one view definition file per document type in stable tables,
|
|
# based on the metadata present in the generated-schemas branch of
|
|
# mozilla-pipeline-schemas
|
|
#
|
|
# If there are existing view definitions in the destination directory then those will be
|
|
# kept instead.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./script/bqetl generate stable_views "$@"
|