Sorin Ionescu
13 years ago
2 changed files with 0 additions and 29 deletions
@ -1,28 +0,0 @@
@@ -1,28 +0,0 @@
|
||||
# |
||||
# Gets the latest Git completion. |
||||
# |
||||
# Authors: |
||||
# Sorin Ionescu <sorin.ionescu@gmail.com> |
||||
# |
||||
|
||||
completion_file="${0:h}/completions/_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 |
||||
# Remove empty completions directory. |
||||
if [[ -d "${completion_file:h}"(/^F) ]]; then |
||||
rmdir "${completion_file:h}" 2> /dev/null |
||||
fi |
||||
|
||||
if mkdir -p "${completion_file:h}" > /dev/null; 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 |
||||
fi |
||||
unset completion_file |
||||
unset completion_file_url |
||||
|
Loading…
Reference in new issue