Skip to content

Commit 9a02057

Browse files
committed
update build script
1 parent 351c2a7 commit 9a02057

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/build_app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def build_macos(
4343

4444
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
4545
subprocess.call(
46-
["pyinstaller", "app/Tuttle.py"] + options,
46+
["pyinstaller", "app/app.py"] + options,
4747
shell=False,
4848
)
4949

@@ -68,7 +68,7 @@ def build_linux(
6868

6969
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
7070
subprocess.call(
71-
["pyinstaller", "app/Tuttle.py"] + options,
71+
["pyinstaller", "app/app.py"] + options,
7272
shell=False,
7373
)
7474

@@ -93,7 +93,7 @@ def build_windows(
9393

9494
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
9595
subprocess.call(
96-
["pyinstaller", "app/Tuttle.py"] + options,
96+
["pyinstaller", "app/app.py"] + options,
9797
shell=False,
9898
)
9999

0 commit comments

Comments
 (0)