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
// Do not fail when XDG_CACHE_HOME value is invalid. Fall back to
258
+
// $HOME/.cache.
259
+
if (xdgCacheDir.isAbsolute()) {
260
+
userCacheDir = xdgCacheDir;
261
+
} else {
262
+
emitWarning("The value of the environment variable 'XDG_CACHE_HOME' is not an absolute path. Using the default cache folder '%s'.", userHome.resolve(".cache"));
263
+
}
264
+
} catch (InvalidPathExceptionnotPath) {
265
+
emitWarning("The value of the environment variable 'XDG_CACHE_HOME' is not a valid path. Using the default cache folder '%s'.", userHome.resolve(".cache"));
0 commit comments