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 18:10:34 +02:00
parent 5d0907b064
commit b7bce52da9
No known key found for this signature in database
GPG key ID: 33312B944DD97846
2 changed files with 2 additions and 2 deletions

View file

@ -123,7 +123,7 @@ c nodeinfo
case ${1:-} in
-i|--interactive)
. start-bash-session.sh
. ./start-bash-session.sh
;;
esac

View file

@ -69,7 +69,7 @@ c nodeinfo
case ${1:-} in
-i|--interactive)
. start-bash-session.sh
. ./start-bash-session.sh
;;
esac