You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like $XDG_CACHE_HOME is assumed to have a trailing slash, but this is non-default.
The XDG Base Dir spec says:
$XDG_CACHE_HOME defines the base directory relative to which user-specific non-essential data files should be stored. If $XDG_CACHE_HOME is either not set or empty, a default equal to $HOME/.cache should be used.
Some logic could be added to check for a trailing slash at the end of $XDG_CACHE_HOME to avoid creating this file in the wrong directory.
The text was updated successfully, but these errors were encountered:
First, thanks for supporting the XDG Base Dir spec!
I found this file in my
$HOME
directory:It seems like the path is supposed to be
.cache/keybase.app.serverConfig
, but is missing a slash. I think this path is generated here:client/shared/constants/platform.desktop.tsx
Lines 60 to 68 in 324f112
It seems like
$XDG_CACHE_HOME
is assumed to have a trailing slash, but this is non-default.The XDG Base Dir spec says:
Some logic could be added to check for a trailing slash at the end of
$XDG_CACHE_HOME
to avoid creating this file in the wrong directory.The text was updated successfully, but these errors were encountered: