mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-04-07 14:06:31 +08:00
Fix bugs
This commit is contained in:
@ -121,6 +121,10 @@ def copy_lib(src, dst, name):
|
||||
lib_dst = dst + "/"
|
||||
if not ("windows" == host_platform()):
|
||||
lib_dst += "lib"
|
||||
|
||||
if not is_file(file_src + lib_ext) and is_dir(src + "/" + name + ".framework"):
|
||||
copy_dir(src + "/" + name + ".framework", dst + "/" + name + ".framework")
|
||||
|
||||
copy_file(file_src + lib_ext, lib_dst + name + lib_ext)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user