mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-24 17:42:28 -04:00
13 lines
326 B
Bash
13 lines
326 B
Bash
## vim:ft=zsh
|
|
## bazaar support by: Frank Terbeck <ft@bewatermyfriend.org>
|
|
## Distributed under the same BSD-ish license as zsh itself.
|
|
|
|
setopt localoptions NO_shwordsplit
|
|
|
|
[[ $1 == '--flavours' ]] && return 1
|
|
|
|
VCS_INFO_check_com bzr || return 1
|
|
vcs_comm[detect_need_file]=branch/format
|
|
VCS_INFO_bydir_detect '.bzr'
|
|
return $?
|