examples: fix call to start-bash-session.sh

Ensure that the file relative to the example scripts is called.
Previously, the unqualified call would give precedence to source files in
PATH. This could lead to the wrong file being called when dir
`helper` (containing another file named `start-bash-session.sh`) was in PATH.
This commit is contained in:
Erik Arvstedt
2024-07-20 22:41:18 +02:00
parent 5d0907b064
commit b7bce52da9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ c nodeinfo
case ${1:-} in
-i|--interactive)
. start-bash-session.sh
. ./start-bash-session.sh
;;
esac