diff options
| author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2013-12-03 23:06:15 +0200 |
|---|---|---|
| committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-12-05 20:06:34 +0000 |
| commit | c1a15fb1522b85a0780ce3f67ec1254115b18501 (patch) | |
| tree | 017b17ca4abf2bfda70430204494c5d5c99cb6c1 | |
| parent | Unposted (see 32085): Another nonessential setopt (diff) | |
| download | zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar.gz zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar.bz2 zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar.lz zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar.xz zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.tar.zst zsh-c1a15fb1522b85a0780ce3f67ec1254115b18501.zip | |
32089: tweak to detect Subversion repository
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | Functions/VCS_Info/Backends/VCS_INFO_detect_svn | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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 |
