diff options
Diffstat (limited to 'zshfunc/vcs-info/VCS_INFO_cvs_get_data')
-rw-r--r-- | zshfunc/vcs-info/VCS_INFO_cvs_get_data | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/zshfunc/vcs-info/VCS_INFO_cvs_get_data b/zshfunc/vcs-info/VCS_INFO_cvs_get_data deleted file mode 100644 index b8b9ad3..0000000 --- a/zshfunc/vcs-info/VCS_INFO_cvs_get_data +++ /dev/null @@ -1,15 +0,0 @@ -VCS_INFO_cvs_get_data () { # {{{ - local cvsbranch cvsbase basename - - cvsbase="." - while [[ -d "${cvsbase}/../CVS" ]]; do - cvsbase="${cvsbase}/.." - done - cvsbase="$(VCS_INFO_realpath ${cvsbase})" - cvsbranch=$(< ./CVS/Repository) - basename=${cvsbase:t} - cvsbranch=${cvsbranch##${basename}/} - [[ -z ${cvsbranch} ]] && cvsbranch=${basename} - VCS_INFO_formats '' "${cvsbranch}" "${cvsbase}" - return 0 -} |