Skip to content

Commit

Permalink
Merge pull request #104 from radarhere/ci-appveyor-depends
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 20, 2023
2 parents 1ba79d2 + f4d9c44 commit 6e58b34
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions winbuild/build_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,9 @@ def cmd_rmdir(path: str) -> str:
def cmd_nmake(
makefile: str | None = None,
target: str = "",
params: str | list[str] | tuple[str, ...] = None,
params: list[str] | None = None,
) -> str:
if params is None:
params = ""
elif isinstance(params, (list, tuple)):
params = " ".join(params)
else:
params = str(params)
params = "" if params is None else " ".join(params)

return " ".join(
[
Expand Down

0 comments on commit 6e58b34

Please sign in to comment.