mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Merge pull request #5821 from risaacson/issue5781
If a executable is defined but not found the module should fail.
This commit is contained in:
@@ -175,7 +175,8 @@ def _get_pip(module, env=None, executable=None):
|
|||||||
if os.path.isabs(executable):
|
if os.path.isabs(executable):
|
||||||
pip = executable
|
pip = executable
|
||||||
else:
|
else:
|
||||||
candidate_pip_basenames.insert(0, executable)
|
# If you define your own executable that executable should be the only candidate.
|
||||||
|
candidate_pip_basenames = [executable]
|
||||||
if pip is None:
|
if pip is None:
|
||||||
if env is None:
|
if env is None:
|
||||||
opt_dirs = []
|
opt_dirs = []
|
||||||
|
|||||||
Reference in New Issue
Block a user