fix doc scripts after new gdbinit loading (#2975)

pull/2978/head^2
k4lizen 7 months ago committed by GitHub
parent da297308b6
commit 02335839dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,9 +1,9 @@
#!/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
uv run --group docs gdb --batch -nx -ix ./gdbinit.py \
-iex "set exception-verbose on" \
-ix ./scripts/_gen_command_docs.py \
-ix ./scripts/_gen_configuration_docs.py \
-ix ./scripts/_gen_function_docs.py \
-nx

@ -3,9 +3,9 @@
# Tell the script to verify instead of generate files.
export PWNDBG_GEN_DOC_JUST_VERIFY=1
# Run the verifier 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
uv run --group docs gdb --batch -nx -ix ./gdbinit.py \
-iex "set exception-verbose on" \
-ix ./scripts/_gen_command_docs.py \
-ix ./scripts/_gen_configuration_docs.py \
-ix ./scripts/_gen_function_docs.py \
-nx

Loading…
Cancel
Save