File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ jobs:
105105
106106 - name : Build app package
107107 run : |
108+ chmod +x ./automator.sh
108109 ./automator.sh build app
109110
110111 - name : Rename app package
Original file line number Diff line number Diff line change 44import toml
55from cx_Freeze import setup
66
7- from automations .const import OS_SPECIFIC_DIR
8-
97
108# <editor-fold desc="Module constants">
119PROJECT_ROOT_DIR = pathlib .Path (__file__ ).parent .parent .parent
5149 "target_name" : "Open-Source-PyMOL" ,
5250 "script" : pathlib .Path (PYMOL_PACKAGE_DIR / "startup_wrapper.py" ),
5351 "base" : "gui" ,
54- "icon" : pathlib .Path (OS_SPECIFIC_DIR / "logo.png" ),
52+ "icon" : pathlib .Path (PROJECT_ROOT_DIR / "os_specific/linux" / "logo.png" ),
5553 }
5654 ],
5755)
Original file line number Diff line number Diff line change 44import toml
55from cx_Freeze import setup
66
7- from automations .const import OS_SPECIFIC_DIR
87
98# <editor-fold desc="Module constants">
109PROJECT_ROOT_DIR = pathlib .Path (__file__ ).parent .parent .parent
5554 "target_name" : "PyMOL" ,
5655 "script" : pathlib .Path (PYMOL_PACKAGE_DIR / "startup_wrapper.py" ),
5756 "base" : "gui" ,
58- "icon" : pathlib .Path (OS_SPECIFIC_DIR / "icon.icns" ),
57+ "icon" : pathlib .Path (PROJECT_ROOT_DIR / "os_specific/macos" / "icon.icns" ),
5958 }
6059 ],
6160)
You can’t perform that action at this time.
0 commit comments