renamed linux_app_launcher to app_launcher

This commit is contained in:
iLLiCiTiT 2021-12-22 18:30:40 +01:00
parent dd99682df3
commit 86bdddf343
3 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -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()
)
)