Parcourir la source

ci: pyinstaller打包更新

web il y a 1 an
Parent
commit
901de706a6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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
 }