doxygen.sh: use relative script's path to call apidoc_full.sh

Signed-off-by: Valerio Setti <[email protected]>
This commit is contained in:
Valerio Setti
2025-01-08 09:58:04 +01:00
parent 1b2dd2d069
commit ee3cbf56a1
+1 -1
View File
@@ -13,7 +13,7 @@ if [ -d library -a -d include -a -d tests ]; then :; else
exit 1
fi
if ./framework/scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else
if $(dirname "$0")/apidoc_full.sh > doc.out 2>doc.err; then :; else
cat doc.err
echo "FAIL" >&2
exit 1;