diff --git a/scripts/demo_common.sh b/scripts/demo_common.sh index d8fcda554..004e6ab20 100644 --- a/scripts/demo_common.sh +++ b/scripts/demo_common.sh @@ -4,7 +4,7 @@ ## ========================== ## ## Include this file near the top of each demo script: -## . "${0%/*}/../demo_common.sh" +## . "${0%/*}/demo_common.sh" ## ## Start with a "msg" call that explains the purpose of the script. ## Then call the "depends_on" function to ensure that all config diff --git a/tests/programs/dlopen_demo.sh b/tests/programs/dlopen_demo.sh index 7280f1d70..6e1e8f12b 100755 --- a/tests/programs/dlopen_demo.sh +++ b/tests/programs/dlopen_demo.sh @@ -6,7 +6,7 @@ # Copyright The Mbed TLS Contributors # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later -. "${0%/*}/../demo_common.sh" +. "${0%/*}/../../scripts/demo_common.sh" msg "Test the dynamic loading of libmbed*"