Skip to content

Commit ee3cbf5

Browse files
committed
doxygen.sh: use relative script's path to call apidoc_full.sh
Signed-off-by: Valerio Setti <[email protected]>
1 parent 1b2dd2d commit ee3cbf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/doxygen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if [ -d library -a -d include -a -d tests ]; then :; else
1313
exit 1
1414
fi
1515

16-
if ./framework/scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else
16+
if $(dirname "$0")/apidoc_full.sh > doc.out 2>doc.err; then :; else
1717
cat doc.err
1818
echo "FAIL" >&2
1919
exit 1;

0 commit comments

Comments
 (0)