We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7862974 commit d30965cCopy full SHA for d30965c
src/ansible_compat/runtime.py
@@ -232,9 +232,6 @@ def load_collections(self) -> None:
232
self.collections = OrderedDict()
233
no_collections_msg = "None of the provided paths were usable"
234
235
- # Workaround for https://github.com/ansible/ansible/issues/73127
236
- Path("~/.ansible/collections").expanduser().mkdir(exist_ok=True, parents=True)
237
-
238
proc = self.run(["ansible-galaxy", "collection", "list", "--format=json"])
239
if proc.returncode == RC_ANSIBLE_OPTIONS_ERROR and (
240
no_collections_msg in proc.stdout or no_collections_msg in proc.stderr
0 commit comments