File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def build_macos(
43
43
44
44
logger .info (f"calling pyinstaller with options: { ' ' .join (options )} " )
45
45
subprocess .call (
46
- ["pyinstaller" , "app/Tuttle .py" ] + options ,
46
+ ["pyinstaller" , "app/app .py" ] + options ,
47
47
shell = False ,
48
48
)
49
49
@@ -68,7 +68,7 @@ def build_linux(
68
68
69
69
logger .info (f"calling pyinstaller with options: { ' ' .join (options )} " )
70
70
subprocess .call (
71
- ["pyinstaller" , "app/Tuttle .py" ] + options ,
71
+ ["pyinstaller" , "app/app .py" ] + options ,
72
72
shell = False ,
73
73
)
74
74
@@ -93,7 +93,7 @@ def build_windows(
93
93
94
94
logger .info (f"calling pyinstaller with options: { ' ' .join (options )} " )
95
95
subprocess .call (
96
- ["pyinstaller" , "app/Tuttle .py" ] + options ,
96
+ ["pyinstaller" , "app/app .py" ] + options ,
97
97
shell = False ,
98
98
)
99
99
You can’t perform that action at this time.
0 commit comments