-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
~ in volume path #301
Comments
Fun! Probably need an PR welcome 😄 |
Tricky one to write tests for ;) Unless you can set |
I believe it will. From the docs for os.path.expanduser:
So presumably, if |
Yep! >>> import os
>>> os.environ['HOME']
'/Users/aanand'
>>> os.environ['HOME'] = '/somewhere/else'
>>> os.path.expanduser('~/Desktop')
'/somewhere/else/Desktop' |
😄 🍰 |
Please, someone fix this soon. |
+1 |
Adds ~ support and ro mode support for volumes, along with some additional validation. Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Adds ~ support and ro mode support for volumes, along with some additional validation. Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Adds ~ support and ro mode support for volumes, along with some additional validation. Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Adds ~ support and ro mode support for volumes, along with some additional validation. Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Adds ~ support and ro mode support for volumes, along with some additional validation. Signed-off-by: Daniel Nephin <dnephin@gmail.com> Signed-off-by: Yuval Kohavi <yuval.kohavi@gmail.com>
If I try to mount something relative to my home folder, instead it creates a folder called "~" inside the current folder, and uses that.
The text was updated successfully, but these errors were encountered: