소스 검색

Remove src from os.trycp for windows in nana

PucklaMotzer09 4 년 전
부모
커밋
49ce0e2841
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/n/nana/xmake.lua

+ 1 - 1
packages/n/nana/xmake.lua

@@ -47,7 +47,7 @@ package("nana")
 
         os.cp("include", package:installdir())
         if package:is_plat("windows") then
-            os.trycp(path.join("build_xmake", "src", "*", "*.lib"), package:installdir("lib"))
+            os.trycp(path.join("build_xmake", "*", "*.lib"), package:installdir("lib"))
         else
             os.trycp(path.join("build_xmake", "*.a"), package:installdir("lib"))
         end