From ac2b39179065eef7da7143b890381c9585433e74 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 7 Jul 2020 23:33:03 -0400 Subject: [PATCH] Typo --- cibuildwheel/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/windows.py b/cibuildwheel/windows.py index 4bc5a973..e1d416eb 100644 --- a/cibuildwheel/windows.py +++ b/cibuildwheel/windows.py @@ -22,7 +22,7 @@ def shell(args: Sequence[Union[str, PathLike]], env: Optional[Dict[str, str]] = cwd: Optional[str] = None) -> int: command = ' '.join(str(a) for a in args) print(f'+ {command}') - return subprocess.check_call([str(s) for a in args], env=env, cwd=cwd, shell=True) + return subprocess.check_call([str(a) for a in args], env=env, cwd=cwd, shell=True) def get_nuget_args(version: str, arch: str) -> List[str]: