init: reapply hack for invalid ZSH_COMPDUMP filenames (b8761985)

master
Marc Cornellà 6 years ago
parent 5d1cdb22c1
commit aee9e603b4
  1. 4
      oh-my-zsh.sh

@ -85,7 +85,9 @@ fi
# Append zcompdump metadata if missing # Append zcompdump metadata if missing
if (( $zcompdump_refresh )); then if (( $zcompdump_refresh )); then
cat >>| "$ZSH_COMPDUMP" <<EOF # Use `tee` in case the $ZSH_COMPDUMP filename is invalid, to silence the error
# See https://github.com/ohmyzsh/ohmyzsh/commit/dd1a7269#commitcomment-39003489
tee -a "$ZSH_COMPDUMP" &>/dev/null <<EOF
$zcompdump_revision $zcompdump_revision
$zcompdump_fpath $zcompdump_fpath

Loading…
Cancel
Save