Skip to content

Commit 0bd4d2b

Browse files
committed
Do not show skipped build steps
1 parent 51bc87f commit 0bd4d2b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/Orchestrator.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ private void PrintTargetsToRun(Node start, Node end)
8282
{
8383
while (start != null)
8484
{
85-
ColoredConsole.Write($"{start.Name} ==> ".Magenta());
85+
if (!start.Skip)
86+
{
87+
ColoredConsole.Write($"{start.Name} ==> ".Magenta());
88+
}
8689
if (start == end)
8790
{
8891
break;

0 commit comments

Comments
 (0)