Fix teamcity block logger

I flipped closed and opened during refactoring
This commit is contained in:
Nate McMaster 2017-07-13 17:52:47 -07:00
parent d3ab458c6c
commit 6c1388567d
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}