1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-24 17:00:32 +02:00

Akinori MUSHA: 29900: Backends/VCS_INFO_detect_svn: Adjust detection to support subversion 1.7.

This commit is contained in:
Frank Terbeck 2011-11-09 17:49:25 +00:00
parent 970adcc4d0
commit 6ed7fab103
2 changed files with 9 additions and 3 deletions

View file

@ -7,5 +7,5 @@ setopt localoptions NO_shwordsplit
[[ $1 == '--flavours' ]] && return 1
VCS_INFO_check_com ${vcs_comm[cmd]} || return 1
{ [[ -f ".svn/entries" ]] || [[ -f ".svn/format" ]] } && return 0
return 1
vcs_comm[detect_need_file]="entries format"
VCS_INFO_bydir_detect '.svn' || return 1