Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: Update VCS_INFO_detect_svn for Subversion 1.7



Hi,

The attached patch fixes vcs_info not working under a subversion 1.7
working directory.

--
Akinori MUSHA / http://akinori.org/

Index: Functions/VCS_Info/Backends/VCS_INFO_detect_svn
===================================================================
RCS file: /cvsroot/zsh/zsh/Functions/VCS_Info/Backends/VCS_INFO_detect_svn,v
retrieving revision 1.3
diff -u -r1.3 VCS_INFO_detect_svn
--- Functions/VCS_Info/Backends/VCS_INFO_detect_svn	11 Feb 2011 07:05:09 -0000	1.3
+++ Functions/VCS_Info/Backends/VCS_INFO_detect_svn	9 Nov 2011 05:14:03 -0000
@@ -7,5 +7,5 @@
 [[ $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

Attachment: pgpmvfJ95nDoD.pgp
Description: PGP signature



Messages sorted by: Reverse Date, Date, Thread, Author