Skip to content

Commit

Permalink
doxygen.sh: use relative script's path to call apidoc_full.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Valerio Setti <[email protected]>
  • Loading branch information
valeriosetti committed Jan 8, 2025
1 parent 1b2dd2d commit ee3cbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ee3cbf5

Please sign in to comment.