mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 09:49:29 +02:00
support ~ paths
This commit is contained in:
parent
a2657887cc
commit
1034a51bd2
2 changed files with 2 additions and 7 deletions
1
.vscode/launch.py
vendored
1
.vscode/launch.py
vendored
|
@ -16,6 +16,7 @@ with open(".vscode/launch.json", "r") as f:
|
|||
|
||||
oj = jstyleson.loads(tj)
|
||||
argv = oj["configurations"][0]["args"]
|
||||
argv = [os.path.expanduser(x) if x.startswith("~") else x for x in argv]
|
||||
try:
|
||||
copyparty(argv)
|
||||
except SystemExit as ex:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue