Fix teamcity block logger
I flipped closed and opened during refactoring
This commit is contained in:
parent
d3ab458c6c
commit
6c1388567d
|
|
@ -28,12 +28,12 @@ namespace RepoTasks
|
|||
|
||||
public WriteHandler WriteHandler { get; }
|
||||
|
||||
public void OnBuildFinished(BuildFinishedEventArgs e)
|
||||
public void OnBuildStarted(BuildStartedEventArgs e)
|
||||
{
|
||||
_write($"##teamcity[blockOpened name='Build {_flowIdAttr}' flowId='{_flowIdAttr}']" + EOL);
|
||||
}
|
||||
|
||||
public void OnBuildStarted(BuildStartedEventArgs e)
|
||||
public void OnBuildFinished(BuildFinishedEventArgs e)
|
||||
{
|
||||
_write($"##teamcity[blockClosed name='Build {_flowIdAttr}' flowId='{_flowIdAttr}']" + EOL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue