remote-helpers/test-bzr.sh: do not use "grep '\s'"
commit0e9b327227fb8f7c1e3a5bbaef19e25b4dfd6764
authorTorsten Bögershausen <tboegi@web.de>
Sun, 7 Apr 2013 08:48:30 +0000 (7 10:48 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 7 Apr 2013 15:41:34 +0000 (7 08:41 -0700)
treef21812c6477e9f3b4cba05a6de15b9dfa8d7b992
parent072dda68eafdefe56f9305c547771367353cf89d
remote-helpers/test-bzr.sh: do not use "grep '\s'"

Using grep "devel\s\+3:" to find at least one whitspace is not
portable on all grep versions; not all grep versions understand "\s"
as a "whitespace".

Use a literal TAB followed by SPACE.

The + as a qualifier for "one or more" is not a basic regular
expression; use egrep instead of grep.

Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/remote-helpers/test-hg.sh