stop after playright stop

This commit is contained in:
2022-05-11 23:13:39 +02:00
parent d37aff124a
commit 73023e9db9
6 changed files with 9 additions and 9 deletions
+3 -2
View File
@@ -29,7 +29,7 @@ exe = EXE(
a.datas,
[],
name='appointment',
debug=False,
debug=True,
bootloader_ignore_signals=False,
strip=False,
upx=True,
@@ -41,8 +41,9 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon='C:\\Users\\landd\\IdeaProjects\\appointment_tool\\hermes-logo.ico'
)
import shutil
shutil.copyfile('C:\\Users\\landd\\IdeaProjects\\appointment_tool\\appointment.json', '{0}/application.json'.format(DISTPATH))
shutil.copyfile('C:\\Users\\landd\\IdeaProjects\\appointment_tool\\appointment.json', '{0}/appointment.json'.format(DISTPATH))
shutil.copyfile('C:\\Users\\landd\\IdeaProjects\\appointment_tool\\contact_all.xlsx', '{0}/contact_all.xlsx'.format(DISTPATH))
shutil.copyfile('C:\\Users\\landd\\IdeaProjects\\appointment_tool\\config.ini', '{0}/config.ini'.format(DISTPATH))