Fix zcompile race condition

sorin-ionescu/prezto#2028
This commit is contained in:
huyz 2022-12-23 00:31:55 -08:00 committed by Jeff Widman
parent e3a9583f33
commit e50b93ca88
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@
# Compile the completion dump to increase startup speed.
zcompdump="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompdump"
if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
zcompile "$zcompdump"
if command mkdir "${zcompdump}.zwc.lock" 2>/dev/null; then
zcompile "$zcompdump"
command rmdir "${zcompdump}.zwc.lock" 2>/dev/null
fi
fi
} &!