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.
pwndbg/scripts/verify-docs.sh

11 lines
238 B
Bash

#!/bin/sh
# 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 1