mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-18 01:21:47 +00:00
aedi: ignore function call type check for mypy
This commit is contained in:
parent
c1828335d2
commit
039d561e97
1 changed files with 2 additions and 2 deletions
|
@ -172,8 +172,8 @@ class ZDoomVulkanBaseTarget(ZDoomBaseTarget):
|
||||||
dst_path /= molten_lib
|
dst_path /= molten_lib
|
||||||
|
|
||||||
if not dst_path.exists():
|
if not dst_path.exists():
|
||||||
copy_func = state.xcode and os.symlink or shutil.copy
|
copy_func = os.symlink if state.xcode else shutil.copy
|
||||||
copy_func(src_path, dst_path)
|
copy_func(src_path, dst_path) # type: ignore
|
||||||
|
|
||||||
super().post_build(state)
|
super().post_build(state)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue