mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix hound comments
This commit is contained in:
parent
250d37b318
commit
ace609fb41
2 changed files with 9 additions and 3 deletions
2
setup.py
2
setup.py
|
|
@ -90,7 +90,7 @@ bdist_mac_options = dict(
|
|||
|
||||
executables = [
|
||||
Executable("start.py", base=base,
|
||||
target_name="openpype_gui", icon=icon_path.as_posix()),
|
||||
target_name="openpype_gui", icon=icon_path.as_posix()),
|
||||
Executable("start.py", base=None,
|
||||
target_name="openpype_console", icon=icon_path.as_posix())
|
||||
]
|
||||
|
|
|
|||
|
|
@ -78,9 +78,15 @@ build_dir = "exe.{}-{}".format(get_platform(), sys.version[0:3])
|
|||
|
||||
# create full path
|
||||
if platform.system().lower() == "darwin":
|
||||
build_dir = Path(os.path.dirname(__file__)).parent / "build" / "OpenPype.app" / "Contents" / "MacOS"
|
||||
build_dir = os.path.join(Path(os.path.dirname(__file__)).parent,
|
||||
"build",
|
||||
"OpenPype.app",
|
||||
"Contents",
|
||||
"MacOS")
|
||||
else:
|
||||
build_dir = Path(os.path.dirname(__file__)).parent / "build" / build_dir
|
||||
build_dir = os.path.join(Path(os.path.dirname(__file__)).parent,
|
||||
"build",
|
||||
build_dir)
|
||||
|
||||
_print(f"Using build at {build_dir}", 2)
|
||||
if not build_dir.exists():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue