Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shim: Fix deployment on headless linux #159

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions common/ayon_common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,15 @@ def _deploy_shim_linux(installer_shim_root):
# Add 'ayon.desktop' to applications
desktop_filename = "ayon.desktop"
apps_dir = os.path.expanduser("~/.local/share/applications")
# Skip if applications directory does not exist
# - e.g. on headless linux
if not os.path.exists(apps_dir):
print(
f"Applications directory '{apps_dir}' does not exist."
f" Deployment of '{desktop_filename}' was skipped."
)
return True

src_desktop_executable = os.path.join(executable_root, desktop_filename)
dst_desktop_executable = os.path.join(apps_dir, desktop_filename)
shutil.copy(src_desktop_executable, apps_dir)
Expand Down