From 86bdddf343513fb34aefcceaad2d1a50b0643e4c Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 22 Dec 2021 18:30:40 +0100 Subject: [PATCH] renamed linux_app_launcher to app_launcher --- linux_app_launcher.py => app_launcher.py | 0 openpype/lib/execute.py | 2 +- setup.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename linux_app_launcher.py => app_launcher.py (100%) diff --git a/linux_app_launcher.py b/app_launcher.py similarity index 100% rename from linux_app_launcher.py rename to app_launcher.py diff --git a/openpype/lib/execute.py b/openpype/lib/execute.py index a36a1f0bf4..f97617d906 100644 --- a/openpype/lib/execute.py +++ b/openpype/lib/execute.py @@ -193,7 +193,7 @@ def get_linux_launcher_args(*args): list: Executables with possible positional argument to script when called from code. """ - filename = "linux_app_launcher" + filename = "app_launcher" openpype_executable = os.environ["OPENPYPE_EXECUTABLE"] executable_filename = os.path.basename(openpype_executable) diff --git a/setup.py b/setup.py index de4887ae3c..a16984ca8e 100644 --- a/setup.py +++ b/setup.py @@ -112,9 +112,9 @@ executables = [ if IS_LINUX: executables.append( Executable( - "linux_app_launcher.py", + "app_launcher.py", base=None, - target_name="linux_app_launcher", + target_name="app_launcher", icon=icon_path.as_posix() ) )