This commit is contained in:
Henry Schreiner
2020-07-07 23:33:03 -04:00
committed by GitHub
parent 47fe71efb4
commit ac2b391790
+1 -1
View File
@@ -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]: