From eb887950b397c7090ea749a836c68c5aa9b21dc8 Mon Sep 17 00:00:00 2001 From: James Downie Date: Mon, 21 Jul 2025 19:53:07 +1000 Subject: [PATCH] Fixed a bug in repo. --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 9d4e0a0..22704c6 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -195,7 +195,7 @@ if __name__ == "__main__": path = os.path.expanduser(cfg[k]["path"]) cmd = f"git config --global --add safe.directory {path}" # I am not outputting any errors here because of a dumb bug in WSL. - output = execute_command(cmd, False) + output = execute_command(cmd, dump_error=False) Path(config_file).touch() if len(sys.argv) == 3: if not sys.argv[2] in cfg.keys():