Skip to content

Commit

Permalink
fix ansible executable
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 4, 2024
1 parent b729f28 commit db3bdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/core/helpers/depsinstaller/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def tasks(self, module, tasks):
return success

def ansible_run(self, tasks=None, module=None, args=None, ansible_args=None):
_ansible_args = {"ansible_connection": "local"}
_ansible_args = {"ansible_connection": "local", "ansible_python_interpreter": sys.executable}
if ansible_args is not None:
_ansible_args.update(ansible_args)
module_args = None
Expand Down

0 comments on commit db3bdfd

Please sign in to comment.