mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
dump state even if the cache directory is world-readable
This commit is contained in:
parent
2862e5f395
commit
9c8cf7ac5f
1 changed files with 1 additions and 1 deletions
|
@ -3361,7 +3361,7 @@ function _p9k_dump_state() {
|
|||
is-at-least 5.4 || return # `typeset -g` doesn't roundtrip in zsh prior to 5.4.
|
||||
local dir=${__p9k_dump_file:h}
|
||||
[[ -d $dir ]] || mkdir -pm 0700 $dir || return
|
||||
[[ -w $dir && -z $dir(#qNR) ]] || return
|
||||
[[ -w $dir ]] || return
|
||||
local tmp=$__p9k_dump_file.$$-$EPOCHREALTIME-$RANDOM
|
||||
local -i fd
|
||||
sysopen -a -m 600 -o creat,trunc -u fd $tmp || return
|
||||
|
|
Loading…
Reference in a new issue