office: Fix neomutt cache dir creation
Fixed the call to create cache directories with the correct environment variable.
This commit is contained in:
parent
ac9a8c69ac
commit
3c3cc20dc2
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
# Ensure the neomutt cache directories exist
|
# 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"
|
||||||
|
|
Loading…
Reference in a new issue