use "rm" instead of "unlink" to delete old config file

This commit is contained in:
Dominic Reich 2023-12-08 18:49:24 +01:00
parent 47b0187a67
commit 44f754d711
No known key found for this signature in database
GPG key ID: BC9D6AE1A3BE169A

View file

@ -1950,7 +1950,7 @@ function generate_config() {
command mkdir -p -- ${__p9k_cfg_path:h} || return
if [[ -e $__p9k_cfg_path ]]; then
unlink $__p9k_cfg_path || return
rm $__p9k_cfg_path || return
fi
print -lr -- "$header" "$lines[@]" >$__p9k_cfg_path
}