diff --git a/i18n/execute.py b/i18n/execute.py index e7c2465338..7a079ab1d6 100644 --- a/i18n/execute.py +++ b/i18n/execute.py @@ -10,6 +10,7 @@ def execute(command, working_directory=BASE_DIR): Command is a string to pass to the shell. Output is ignored. """ + LOG.info("Executing in %s ...", working_directory) LOG.info(command) subprocess.check_call(command, cwd=working_directory, stderr=subprocess.STDOUT, shell=True)