Actions
Feature #12695
closedFile.expand_path should resolve ~/ using /etc/passwd when HOME is not set
Feature #12695:
File.expand_path should resolve ~/ using /etc/passwd when HOME is not set
Status:
Closed
Assignee:
-
Target version:
-
Description
I would expect a call like File.expand_path('~/.ssh/known_hosts') to work even though HOME is not set.
A reason this is important to fix is that libraries (in my use case Net::SSH) do calls like File.expand_path('~/.ssh/known_hosts'), but this will often fail when the code is run in a unix service, since HOME often isn't set then.
I considered reporting this as a bug, but the current behaviour is actually documented.
Actions