diff options
author | Sam Doran <sdoran@redhat.com> | 2019-10-18 10:56:19 -0400 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2019-10-18 10:56:19 -0400 |
commit | 4de516d35fe883d050bf3a31749f305bd7d36d11 (patch) | |
tree | 71c6d2c045581dc45b84c5c91ee22ba58332a0b9 /hacking/env-setup.fish | |
parent | 741d529409a03c361efc78a418bc56c4dc5a52eb (diff) | |
download | ansible-4de516d35fe883d050bf3a31749f305bd7d36d11.zip |
Do not set ANSIBLE_LIBRARY in env-setup.fish (#63688)
Setting this env var was removed from env-setup back in 2014. Not sure why it is in this setup script and it interferes with the defult search path
Diffstat (limited to 'hacking/env-setup.fish')
-rw-r--r-- | hacking/env-setup.fish | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hacking/env-setup.fish b/hacking/env-setup.fish index 183bcccf22..0ef92cdc65 100644 --- a/hacking/env-setup.fish +++ b/hacking/env-setup.fish @@ -57,15 +57,13 @@ if not set -q PYTHON_BIN end end -set -gx ANSIBLE_LIBRARY $ANSIBLE_HOME/library - # # Generate egg_info so that pkg_resources works # # Do the work in a fuction function gen_egg_info - # Cannot use `test` on wildcards. + # Cannot use `test` on wildcards. # @see https://github.com/fish-shell/fish-shell/issues/5960 if count $PREFIX_PYTHONPATH/ansible*.egg-info > /dev/null rm -rf $PREFIX_PYTHONPATH/ansible*.egg-info |