On Nov 8, 2007, at 10:48 PM, Ralf Wildenhues wrote:
diff --git a/git-bisect.sh b/git-bisect.sh index c18bd32..3aac816 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -276,7 +276,8 @@ exit_if_skipped_commits () { if expr "$_tried" : ".*[|].*" > /dev/null ; then echo "There are only 'skip'ped commit left to test." echo "The first bad commit could be any of:" - echo "$_tried" | sed -e 's/[|]/\n/g' + echo "$_tried" | sed -e 's/[|]/\
Just out of curiosity, is there any valid reason to use `[' and `]' in this RE? By default sed does not use extended RE (at least none of the implementation I know of) so why not just use sed 's/|/...' ?
+/g' echo "We cannot bisect more!" exit 2 fi
-- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory
Attachment:
PGP.sig
Description: This is a digitally signed message part