liboqs/scripts/run_doxygen.sh
Michael Baentsch d9c2cd2136
doxygen update (#1228)
* upgrade script to support doxygen 1.9.3

* update CI script for doc generation

* add license identifiers
2022-06-21 10:53:16 -04:00

18 lines
332 B
Bash
Executable File

#!/bin/sh
# SPDX-License-Identifier: MIT
if [ "$#" -ne 2 ]; then
echo "Wrong number of arguments: Expecting path to doxygen binary and doxygen file. Exiting."
exit 1
fi
cp README.md README.md-orig
python3 scripts/doxyfy.py README.md-orig README.md
# run doxygen:
$1 $2
# remove helper README
mv README.md-orig README.md