1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

fix(poetry-env): only run deactivate if needed (#12701)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
Alex Rosenfeld
2024-10-08 15:44:18 -04:00
committed by GitHub
parent 2a109d30af
commit 0987eee190

View File

@@ -6,10 +6,11 @@ _togglePoetryShell() {
fi
# Deactivate the current environment if moving out of a Poetry directory or into a different Poetry directory
if [[ $poetry_active -eq 1 ]] && { [[ $in_poetry_dir -eq 0 ]] && [[ "$PWD" != "$poetry_dir"* ]]; }; then
if [[ $poetry_active -eq 1 ]] && [[ $in_poetry_dir -eq 0 ]] \
&& [[ "$PWD" != "$poetry_dir"* ]]; then
export poetry_active=0
unset poetry_dir
deactivate
(( $+functions[deactivate] )) && deactivate
fi
# Activate the environment if in a Poetry directory and no environment is currently active