diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vcs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ cvs guess_type() { - if [ -e "$1"/.git ] || ([ -n "${GIT_DIR:-}" ] && [ -n "$GIT_WORK_TREE" ]); then + if [ -e "$1"/.git ] || { [ -n "${GIT_DIR:-}" ] && [ -n "$GIT_WORK_TREE" ]; }; then echo git elif [ -e "$1"/.hg ]; then echo mercurial |