diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Functions/VCS_Info/Backends/VCS_INFO_detect_svn | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 0618563ee..a44f54bf8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-12-05 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * Daniel Shahaf: 32089: + Functions/VCS_Info/Backends/VCS_INFO_detect_svn: tweak for + detecting Subversion repository. + 2013-12-02 Barton E. Schaefer <schaefer@zsh.org> * 32080 (plus unposted second instance of same): diff --git a/Functions/VCS_Info/Backends/VCS_INFO_detect_svn b/Functions/VCS_Info/Backends/VCS_INFO_detect_svn index 43dedcde9..c2288e421 100644 --- a/Functions/VCS_Info/Backends/VCS_INFO_detect_svn +++ b/Functions/VCS_Info/Backends/VCS_INFO_detect_svn @@ -7,5 +7,5 @@ setopt localoptions NO_shwordsplit [[ $1 == '--flavours' ]] && return 1 VCS_INFO_check_com ${vcs_comm[cmd]} || return 1 -vcs_comm[detect_need_file]="entries format" +vcs_comm[detect_need_file]="entries format wc.db" VCS_INFO_bydir_detect '.svn' || return 1 |