mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
4e6e49652b
Fixes #10190
16 lines
438 B
Bash
16 lines
438 B
Bash
if (( $+commands[rustup] && $+commands[cargo] )); then
|
|
ver="$(cargo --version)"
|
|
ver_file="$ZSH_CACHE_DIR/cargo_version"
|
|
comp_file="$ZSH/plugins/cargo/_cargo"
|
|
|
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
|
rustup completions zsh cargo >| "$comp_file"
|
|
echo "$ver" >| "$ver_file"
|
|
fi
|
|
|
|
declare -A _comps
|
|
autoload -Uz _cargo
|
|
_comps[cargo]=_cargo
|
|
|
|
unset ver ver_file comp_file
|
|
fi
|