Skip to content

Commit ea887d8

Browse files
authored
Use XDG_CACHE_HOME instead of XDG_CONFIG_CACHE (#3009)
1 parent daa6224 commit ea887d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansiblelint/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
CACHE_DIR = (
26-
os.path.expanduser(os.environ.get("XDG_CONFIG_CACHE", "~/.cache")) + "/ansible-lint"
26+
os.path.expanduser(os.environ.get("XDG_CACHE_HOME", "~/.cache")) + "/ansible-lint"
2727
)
2828

2929
DEFAULT_WARN_LIST = [

0 commit comments

Comments
 (0)