添加 .gitignore 文件

This commit is contained in:
andy
2023-05-17 08:51:24 +08:00
parent da2433e693
commit 02219c7c12
2 changed files with 7 additions and 1 deletions

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
build/
dist/
file/
__pycache__/
*.pid
*.spec

View File

@@ -23,7 +23,7 @@
打包为exe文件
D:\Python\Python38-32\Scripts\pyinstaller.exe -F updata.py
打包为无黑框的exe文件
D:\Python\Python38-32\Scripts\pyinstaller.exe -F -w -i icon.ico updata.py
D:\Python\Python38-32\Scripts\pyinstaller.exe -F -w -i icon.ico updata.py
使用新的图标
可以手动添加文件
2023.5.12