1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00

Check for the existence of .zcompdump before compiling

This commit is contained in:
huyz 2012-12-11 21:37:17 -08:00 committed by Sorin Ionescu
parent decf3cd875
commit 37f65b3f86

View File

@ -9,7 +9,7 @@
{ {
# Compile the completion dump to increase startup speed. # Compile the completion dump to increase startup speed.
zcompdump="${ZDOTDIR:-$HOME}/.zcompdump" zcompdump="${ZDOTDIR:-$HOME}/.zcompdump"
if [[ "$zcompdump" -nt "${zcompdump}.zwc" || ! -s "${zcompdump}.zwc" ]]; then if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
zcompile "$zcompdump" zcompile "$zcompdump"
fi fi