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.
10 lines
351 B
Bash
10 lines
351 B
Bash
#!/bin/sh
|
|
|
|
# Run the generator inside gdb so everything resolves correctly.
|
|
uv run --group docs gdb --batch -nx --ex "source ./gdbinit.py" \
|
|
--ex "set exception-verbose on" \
|
|
--ex "source ./scripts/_gen_command_docs.py" \
|
|
--ex "source ./scripts/_gen_configuration_docs.py" \
|
|
--ex "source ./scripts/_gen_function_docs.py" \
|
|
--quiet
|