Skip to content

Commit

Permalink
Merge pull request #44 from pnasrat/fix-vendored-tigervnc-path
Browse files Browse the repository at this point in the history
Fix path when using bundled tigervnc
  • Loading branch information
yuvipanda committed Jul 14, 2023
2 parents a6e3fd4 + 1b00e32 commit c61510c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_remote_desktop_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def setup_desktop():

if vncserver is None:
# Use bundled tigervnc
vncserver = (os.path.join(HERE, 'share/tigervnc/bin/vncserver'),)
vncserver = os.path.join(HERE, 'share/tigervnc/bin/vncserver')

# TigerVNC provides the option to connect a Unix socket. TurboVNC does not.
# TurboVNC and TigerVNC share the same origin and both use a Perl script
Expand Down

0 comments on commit c61510c

Please sign in to comment.