mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
436 B
Bash
14 lines
436 B
Bash
#! /bin/sh
|
|
#
|
|
# Generate RST EVE documentation.
|
|
#
|
|
# This has been broken out of the Makefile so it can be called by
|
|
# make, and Sphinx via conf.py.
|
|
|
|
set -e
|
|
|
|
mkdir -p _generated
|
|
../../scripts/evedoc.py --output _generated/eve-index.rst ../../etc/schema.json
|
|
../../scripts/evedoc.py --output _generated/quic.rst --object quic ../../etc/schema.json
|
|
../../scripts/evedoc.py --output _generated/pgsql.rst --object pgsql ../../etc/schema.json
|