Skip to content

Commit

Permalink
revert prefix addition for MBT task
Browse files Browse the repository at this point in the history
  • Loading branch information
tsharmaMW committed Jan 30, 2025
1 parent e82cc1d commit 6e5f4e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
methods (Access=protected)

function runTask(plugin, pluginData)
disp("##teamcity[blockOpened name ='Task " + pluginData.TaskResults.Name + "']");
disp("##teamcity[blockOpened name ='" + pluginData.TaskResults.Name + "']");
disp("##teamcity[progressStart 'Running " + pluginData.TaskResults.Name + " Task']");

[email protected](plugin, pluginData);

disp("##teamcity[progressFinish 'Running " + pluginData.TaskResults.Name + " Task']");
disp("##teamcity[blockClosed name ='Task " + pluginData.TaskResults.Name + "']");
disp("##teamcity[blockClosed name ='" + pluginData.TaskResults.Name + "']");
end

end
Expand Down

0 comments on commit 6e5f4e3

Please sign in to comment.