mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-09 00:04:26 -04:00
* upgrade script to support doxygen 1.9.3 * update CI script for doc generation * add license identifiers
18 lines
332 B
Bash
Executable File
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
|