Browse Source

~/.bin/rt: Recognize bb as shortcut for bitbucket.

It's a shortcut for git+bitbucket, though.
Lucas Stadler 12 years ago
parent
commit
d13c057673
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .bin/rt

+ 1 - 1
.bin/rt

@ -28,7 +28,7 @@ prog_from_any() {
28 28
		rt_PROG="git"
29 29
	elif [ -d "$1/.hg" ]; then
30 30
		rt_PROG="hg"
31
	elif [ `echo $1 | grep -E "(git|hub|gh|repo.or.cz)"` ]; then
31
	elif [ `echo $1 | grep -E "(git|hub|gh|bb|repo.or.cz)"` ]; then
32 32
		rt_PROG="git"
33 33
	elif [ `echo $1 | grep -E "(hg|bitbucket)"` ]; then
34 34
		rt_PROG="hg"