16 lines
535 B
Bash
16 lines
535 B
Bash
# Get the latest Git completion.
|
|
completion_file="${0:h}/_git"
|
|
completion_file_url='http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD'
|
|
if [[ ! -e "$completion_file" ]] && (( $+commands[git] )); then
|
|
if (( $+commands[curl] )); then
|
|
curl -L "$completion_file_url" -o "$completion_file" &> /dev/null &!
|
|
fi
|
|
|
|
if (( $+commmands[wget] )); then
|
|
wget -C "$completion_file_url" -O "$completion_file" &> /dev/null &!
|
|
fi
|
|
fi
|
|
unset completion_file
|
|
unset completion_file_url
|
|
|