mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 18:44:14 +00:00
d5c5bc12ae
* WIP: work for side-by-side layout in json forms w/ burnettk * added support in ObjectFieldTemplate to support side-by-side layout w/ burnettk * added a restricted grid template for half width forms * display the error message if field mentioned in ui:layout but the field does not exist * added docs for side-by-side layout w/ burnettk * update script --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com>
13 lines
372 B
Bash
Executable File
13 lines
372 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
exit "$2"
|
|
}
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
gitc Building_Diagrams/Forms.md
|
|
python bin/gpt-proofread.py Building_Diagrams/Forms.md
|
|
mv Building_Diagrams/Forms.qmd Building_Diagrams/Forms.md
|