Skip to content

Commit

Permalink
Move default install directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Sep 15, 2023
1 parent f56655c commit ec5043b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jupyter_remote_desktop_proxy/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
import os
import platform
import shutil
import sys
import tarfile
import textwrap
from urllib.request import HTTPError, urlopen, urlretrieve

from xml.etree import ElementTree

HERE = os.path.dirname(os.path.abspath(__file__))

def checksum_file(path):
"""Compute the md5 checksum of a path"""
hasher = hashlib.md5()
Expand Down Expand Up @@ -94,7 +95,7 @@ def main():
parser.add_argument(
"--output",
dest="installation_dir",
default="./dependencies",
default=f"{HERE}/share/tigervnc",
help=textwrap.dedent(
"""\
The installation directory (absolute or relative path).
Expand Down

0 comments on commit ec5043b

Please sign in to comment.