Explorar el Código

ci: pyinstaller打包更新

web hace 1 año
padre
commit
901de706a6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 }