mirror of https://github.com/pwndbg/pwndbg.git
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.
8 lines
332 B
Bash
8 lines
332 B
Bash
#!/bin/sh
|
|
|
|
# This may perform verification instead of building
|
|
# depending on PWNDBG_DOCGEN_VERIFY.
|
|
uv run --group docs python ./scripts/_docs/build_command_docs.py || exit 1
|
|
uv run --group docs python ./scripts/_docs/build_configuration_docs.py || exit 2
|
|
uv run --group docs python ./scripts/_docs/build_function_docs.py || exit 3
|