diff --git a/zsh/func/init_env_python b/zsh/func/init_env_python index e524c34..577a2ac 100644 --- a/zsh/func/init_env_python +++ b/zsh/func/init_env_python @@ -5,7 +5,7 @@ autoload -Uz prepend_to_path init_env_python() { local pythonRoot="$HOME/Library/Python" if [[ -d "$pythonRoot" ]]; then - for f in "$pythonRoot/*"; do + for f in $pythonRoot/*; do prepend_to_path "$f/bin" done fi