robocan commited on
Commit
b17926f
·
verified ·
1 Parent(s): 3510bf6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ token = os.environ.get("token")
6
 
7
  # Clone the repository using the token
8
  repo_url = f"https://robocan:{token}@huggingface.co/robocan/GeoG_City"
9
- destination_dir = "/SVD"
10
 
11
  # Run the git clone command using subprocess
12
  subprocess.run(["git", "clone", repo_url, destination_dir], check=True)
 
6
 
7
  # Clone the repository using the token
8
  repo_url = f"https://robocan:{token}@huggingface.co/robocan/GeoG_City"
9
+ destination_dir = os.path.expanduser("~/SVD") # Use a directory in the home directory
10
 
11
  # Run the git clone command using subprocess
12
  subprocess.run(["git", "clone", repo_url, destination_dir], check=True)