Merge "Fix comment in getHome" into main

This commit is contained in:
rebecca “wiggles” turner 2024-08-26 23:17:04 +00:00 committed by Gerrit Code Review
commit 0dc486a5bf

View file

@ -36,7 +36,7 @@ Path getHome()
std::optional<std::string> unownedUserHomeDir = {};
auto homeDir = getEnv("HOME");
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;
int result = stat(homeDir->c_str(), &st);
if (result != 0) {