Skip to content

Commit

Permalink
Use XDG_CACHE_HOME instead of XDG_CONFIG_CACHE (#3009)
Browse files Browse the repository at this point in the history
  • Loading branch information
gangefors authored Feb 10, 2023
1 parent daa6224 commit ea887d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


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

DEFAULT_WARN_LIST = [
Expand Down

0 comments on commit ea887d8

Please sign in to comment.