You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to source setup_env.sh in my RPi 5 using zsh, I get the following error,
➜ hailo-rpi5-examples git:(main) ✗ echo $ZSH_VERSION
5.9
➜ hailo-rpi5-examples git:(main) ✗ . ./setup_env.sh
is_sourced:2: no such option: sourced
This script needs to be sourced to correctly set up the environment. Please run '. setup_env.sh' instead of executing it.
➜ hailo-rpi5-examples git:(main) ✗
I fixed the script so I can now use it with zsh. See the patch below,
diff --git a/setup_env.sh b/setup_env.sh
index d19faa6..4b900c0 100755
--- a/setup_env.sh+++ b/setup_env.sh@@ -11,7 +11,7 @@ TAPPAS_REQUIRED_VERSION=("3.28.0" "3.28.1" "3.28.2" "3.29.0" "3.29.1")
# Function to check if the script is being sourced
is_sourced() {
if [ -n "$ZSH_VERSION" ]; then
- [[ -o sourced ]]+ case $ZSH_EVAL_CONTEXT in *:file:*) return 0;; esac
elif [ -n "$BASH_VERSION" ]; then
[[ "${BASH_SOURCE[0]}" != "$0" ]]
else
The text was updated successfully, but these errors were encountered:
If I try to source
setup_env.sh
in my RPi 5 using zsh, I get the following error,I fixed the script so I can now use it with zsh. See the patch below,
The text was updated successfully, but these errors were encountered: