mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #8579 from hahla/devel
Fix issue #8578. Setting envvar in ""'s ensures the PYTHONPATH is set to
This commit is contained in:
commit
ab6e1a43e9
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ else
|
||||||
case "$PREFIX_PYTHONPATH*"
|
case "$PREFIX_PYTHONPATH*"
|
||||||
case "*"
|
case "*"
|
||||||
echo "Appending PYTHONPATH"
|
echo "Appending PYTHONPATH"
|
||||||
set -gx PYTHONPATH $PREFIX_PYTHONPATH:$PYTHONPATH
|
set -gx PYTHONPATH "$PREFIX_PYTHONPATH:$PYTHONPATH"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue