Skip to content

Commit

Permalink
Fix tigervnc_path check
Browse files Browse the repository at this point in the history
vncserver can be in bin or in libexec
  • Loading branch information
cmd-ntrf committed Sep 25, 2023
1 parent 6135bbe commit 04dff5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_remote_desktop_proxy/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def fetch_release_info(tigervnc_archive, tigervnc_version):


def install_tigervnc(prefix, plat, tigervnc_version):
tigervnc_path = os.path.join(prefix, "bin", "vncserver")
tigervnc_path = os.path.join(prefix, "bin", "vncconfig")
if os.path.exists(tigervnc_path):
print(f"Tigervnc already exists at {tigervnc_path}. Remove it to re-install.")
print("--- Done ---")
Expand Down

0 comments on commit 04dff5d

Please sign in to comment.