From 2c32f560c28d03ff4bc38c46e3800b5456da73ea Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Thu, 17 Nov 2022 23:07:49 +0000 Subject: [PATCH] Log current directory before running galaxy install --- src/ansible_compat/runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansible_compat/runtime.py b/src/ansible_compat/runtime.py index a0b097ec..c5455361 100644 --- a/src/ansible_compat/runtime.py +++ b/src/ansible_compat/runtime.py @@ -230,7 +230,7 @@ def install_collection( cmd.extend(["-p", str(destination)]) cmd.append(f"{collection}") - _logger.info("Running %s", " ".join(cmd)) + _logger.info("Running from %s : %s", os.getcwd(), " ".join(cmd)) run = self.exec( cmd, retry=True,