Ensure compinit updates its modified date

`compinit -i` doesn't always change zcompdump, which means that the
`compinit -C` condition fails to run until the completions change.
When we `compinit -i`, we should touch the file too to solve this.
This commit is contained in:
mattmc3 2021-01-08 10:21:44 -05:00 committed by Indrajit Raychaudhuri
parent c5175145d4
commit 6a70bdfff2
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ if [[ $_comp_path(#qNmh-20) ]]; then
else
mkdir -p "$_comp_path:h"
compinit -i -d "$_comp_path"
touch "$_comp_path"
fi
unset _comp_path