Skip to content

Commit

Permalink
scripts: fix paths in files moved from Mbed TLS
Browse files Browse the repository at this point in the history
Signed-off-by: Valerio Setti <[email protected]>
  • Loading branch information
valeriosetti committed Dec 11, 2024
1 parent 5cac8c8 commit 6c7796f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/recursion.pl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# When the recursion depth might depend on data controlled by the attacker in
# an unbounded way, those functions should use iteration instead.
#
# Typical usage: scripts/recursion.pl library/*.c
# Typical usage: framework/scripts/recursion.pl library/*.c
#
# Copyright The Mbed TLS Contributors
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Expand Down

0 comments on commit 6c7796f

Please sign in to comment.