From ee3cbf56a1c5cb4812f4fbaef14e58cb9b7d5ef3 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Wed, 8 Jan 2025 06:25:34 +0100 Subject: [PATCH] doxygen.sh: use relative script's path to call apidoc_full.sh Signed-off-by: Valerio Setti --- scripts/doxygen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/doxygen.sh b/scripts/doxygen.sh index 07c08f673..8c37b20de 100755 --- a/scripts/doxygen.sh +++ b/scripts/doxygen.sh @@ -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;