From 31423be9939e8e467e59e13d7c033a64495852be Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 6 Dec 2024 11:26:55 +0100 Subject: [PATCH] tests: scripts: fix paths in doxygen.sh Signed-off-by: Valerio Setti --- tests/scripts/doxygen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/doxygen.sh b/tests/scripts/doxygen.sh index b6a1d45949..07c08f6730 100755 --- a/tests/scripts/doxygen.sh +++ b/tests/scripts/doxygen.sh @@ -13,7 +13,7 @@ if [ -d library -a -d include -a -d tests ]; then :; else exit 1 fi -if scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else +if ./framework/scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else cat doc.err echo "FAIL" >&2 exit 1;