Browse Source

ci: pyinstaller打包更新

web 1 năm trước cách đây
mục cha
commit
901de706a6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      package.sh

+ 1 - 1
package.sh

@@ -11,7 +11,7 @@ build(){
     cd ${path} && mkdir -p ${path}/dist && rm -rf dist/*
     for i in ${pynameList}; do
         rm -rf ${i}.spec build __pycache__
-        pyinstaller -F ${i}.py
+        pyinstaller -F ${i}.py --runtime-tmpdir './'
         rm -rf ${i}.spec build __pycache__
     done
 }