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.

This commit is contained in:
KaySar12 2025-05-15 17:45:24 +07:00
parent 58b9e0874b
commit feb893e05b

View File

@ -70,7 +70,7 @@ def gen_commit(project_path):
async def get_submodule_info(): async def get_submodule_info():
"""Get submodule information including path and remote URL.""" """Get submodule information including path and remote URL."""
proc = await asyncio.create_subprocess_exec( 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, stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,
) )