From feb893e05b264a25ace557949df61626ef17e8b7 Mon Sep 17 00:00:00 2001 From: KaySar12 Date: Thu, 15 May 2025 17:45:24 +0700 Subject: [PATCH] It seems the directory doesn't exist or isn't accessible. Please ensure the directory path is correct and the directory exists, then try again. --- scripts/interpreter/gen_commit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/interpreter/gen_commit.py b/scripts/interpreter/gen_commit.py index 858a893..5404cd0 100755 --- a/scripts/interpreter/gen_commit.py +++ b/scripts/interpreter/gen_commit.py @@ -70,7 +70,7 @@ def gen_commit(project_path): async def get_submodule_info(): """Get submodule information including path and remote URL.""" proc = await asyncio.create_subprocess_exec( - "git", "config", "--file", ".gitmodules", "--get-regexp", "^submodule\..*\.path$", + "git", "config", "--file", ".gitmodules", "--get-regexp", r"^submodule\..*\.path$", stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, )