diff --git a/src/python/jw/pkg/cmds/projects/CmdGetAuthInfo.py b/src/python/jw/pkg/cmds/projects/CmdGetAuthInfo.py index be54b524..b77def11 100644 --- a/src/python/jw/pkg/cmds/projects/CmdGetAuthInfo.py +++ b/src/python/jw/pkg/cmds/projects/CmdGetAuthInfo.py @@ -29,7 +29,7 @@ class CmdGetAuthInfo(Cmd): # export if not os.path.isdir(jw_pkg_dir + '/.git'): log(DEBUG, f'jw-pkg directory is not a Git repo: {jw_pkg_dir}') return - remotes, stderr = await run_cmd(['git', '-C', jw_pkg_dir, 'remote', '-v']) + remotes, stderr = await run_cmd('git', '-C', jw_pkg_dir, 'remote', '-v') result: dict[str, str] = {} for line in remotes.split('\n'): if re.match(r'^\s*$', line):