mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-04 08:30:54 +02:00
11 lines
319 B
Bash
11 lines
319 B
Bash
## vim:ft=zsh
|
|
## gnu arch 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 tla || return 1
|
|
vcs_comm[basedir]="$(tla tree-root 2> /dev/null)" && return 0
|
|
return 1
|