On 07/02/2014 12:58 PM, Torsten Bögershausen wrote:
@@ -757,6 +761,10 @@ To restore the original branch and stop patching run \"\$cmdline --abort\"." then cat "$dotest/msg-clean" fi + if test 't' == "$message_id"The == is bash special, please use = instead And the 't' can be written as t, so that the whole line looks like this: if test t = "$message_id"
Thanks. v3 posted with these changes. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

