Re: Post Build Task matching - quick question

2014-08-12 Thread repacefay
zw gmail.com> writes: > > Hi  > We have a plugin to perform task post build. We have 2 post tasks > We tried to match this string below, belonging to the first post task run > POST BUILD TASK : SUCCESS On our second post task, we tried to match it, as a condition, to ^.*POST.*BUILD.*TASK.*SUCCE

RE: Post Build Task matching - quick question

2013-01-04 Thread Merrow, Frank
I am not saying this is your issue, but you have a minor bug . . . a missing “.” After the second S in SUCCESS: ^.*POST.*BUILD.*TASK.*SUCCESS.*$ Because of the missing “.” . . . if there was any white space after SUCCESS the rexexp would fail. Might be your problem . . . might not. Frank Fro