diff options
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 285caf668..6c61725cd 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -86,7 +86,7 @@ fi # Append zcompdump metadata if missing if (( $zcompdump_refresh )); then - echo "\n$zcompdump_metadata" >>! "$ZSH_COMPDUMP" + echo "\n$zcompdump_metadata" | tee -a "$ZSH_COMPDUMP" &>/dev/null fi unset zcompdump_metadata zcompdump_refresh |