When debugging subprocess calls (with STGIT_SUBPROCESS_LOG=debug), it's important to know the environment and working directory we pass to the subprocess, not just the command-line parameters. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> --- stgit/run.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/stgit/run.py b/stgit/run.py index 77f2e65..0b79729 100644 --- a/stgit/run.py +++ b/stgit/run.py @@ -48,6 +48,12 @@ class Run: def __log_start(self): if _log_mode == 'debug': out.start('Running subprocess %s' % self.__cmd) + if self.__cwd != None: + out.info('cwd: %s' % self.__cwd) + if self.__env != None: + for k in sorted(self.__env.iterkeys()): + if k not in os.environ or os.environ[k] != self.__env[k]: + out.info('%s: %s' % (k, self.__env[k])) elif _log_mode == 'profile': out.start('Running subprocess %s' % self.__cmd[0]) self.__starttime = datetime.datetime.now() -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html