提交 dfdcb558 编写于 作者: J Junio C Hamano

Fix-up previous expr changes.

The regexp on the right hand side of expr : operator somehow was
broken.

	expr 'z+pu:refs/tags/ko-pu' : 'z\+\(.*\)'

does not strip '+'; write 'z+\(.*\)' instead.

We probably should switch to shell based substring post 1.3.0;
that's not bashism but just POSIX anyway.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 f327dbce
......@@ -252,10 +252,10 @@ fetch_main () {
else
not_for_merge=
fi
if expr "z$ref" : 'z\+' >/dev/null
if expr "z$ref" : 'z+' >/dev/null
then
single_force=t
ref=$(expr "z$ref" : 'z\+\(.*\)')
ref=$(expr "z$ref" : 'z+\(.*\)')
else
single_force=
fi
......
......@@ -77,7 +77,7 @@ canon_refs_list_for_fetch () {
force=
case "$ref" in
+*)
ref=$(expr "z$ref" : 'z\+\(.*\)')
ref=$(expr "z$ref" : 'z+\(.*\)')
force=+
;;
esac
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册