Merge "Fix comment in getHome
" into main
This commit is contained in:
commit
0dc486a5bf
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ Path getHome()
|
||||||
std::optional<std::string> unownedUserHomeDir = {};
|
std::optional<std::string> unownedUserHomeDir = {};
|
||||||
auto homeDir = getEnv("HOME");
|
auto homeDir = getEnv("HOME");
|
||||||
if (homeDir) {
|
if (homeDir) {
|
||||||
// Only use $HOME if doesn't exist or is owned by the current user.
|
// Only use `$HOME` if it exists and is owned by the current user.
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int result = stat(homeDir->c_str(), &st);
|
int result = stat(homeDir->c_str(), &st);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
|
|
Loading…
Reference in a new issue