From ace609fb4164d1e9dc812a90d90e61aa72f23d42 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Tue, 20 Apr 2021 20:47:44 +0200 Subject: [PATCH] fix hound comments --- setup.py | 2 +- tools/build_dependencies.py | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 309f83c05c..c096befa34 100644 --- a/setup.py +++ b/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()) ] diff --git a/tools/build_dependencies.py b/tools/build_dependencies.py index 6c87a4d689..570c61cfdb 100644 --- a/tools/build_dependencies.py +++ b/tools/build_dependencies.py @@ -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():