修复normpath

This commit is contained in:
zhbaor 2024-09-23 17:57:39 +08:00
parent a28d3b7d1d
commit 87b8e3d407

View file

@ -39,7 +39,7 @@ class Api:
def run(self, command, cwd=None):
command = shlex.split(command)
command[0] = os.path.normpath(command)
command[0] = os.path.normpath(command[0])
with Popen(
command,
stdout=PIPE,