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.
15 lines
305 B
Bash
15 lines
305 B
Bash
#!/usr/bin/env bash
|
|
|
|
source "$(dirname "$0")/common.sh"
|
|
|
|
cd $PWNDBG_ABS_PATH
|
|
|
|
# Extract the documentation.
|
|
echo "Extracting docs.."
|
|
./scripts/_docs/extract-all-docs.sh || exit 1
|
|
|
|
# Verify the documentation.
|
|
echo "Verifying docs.."
|
|
export PWNDBG_DOCGEN_VERIFY=1
|
|
./scripts/_docs/build-all-docs.sh || exit 2
|