office: Fix neomutt cache dir creation

Fixed the call to create cache directories with the correct environment
variable.
This commit is contained in:
Marty Oehme 2022-12-08 10:48:31 +01:00
parent ac9a8c69ac
commit 3c3cc20dc2
Signed by: Marty
GPG Key ID: 73BA40D5AFAF49C9
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
# Ensure the neomutt cache directories exist
[ -d "${XDG_CACHE_HOME:-~/.cache}/neomutt" ] || mkdir -p "${XDG_CACHE_HOME:-~/.cache}/neomutt/hcache"
[ -d "${XDG_CACHE_HOME:-$HOME/.cache}/neomutt" ] || mkdir -p "${XDG_CACHE_HOME:-$HOME/.cache}/neomutt/hcache"