Skip to content

Commit ee2e4a7

Browse files
committed
🔧 funky introspection progress indicator minor fix
1 parent 61ba98d commit ee2e4a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tdvcli/AST/Server/CommandIntrospect.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ private async Task RunTheIntrospection(TdvWebServiceClient tdvClient, IInfoOutpu
495495

496496
if (overallProgress.Equals(previousProgressState))
497497
{
498-
output.InfoNoEoln((hourglassState == 0 ? " " : "\b\b") + hourglass[hourglassState % hourglass.Length] + " ");
498+
output.InfoNoEoln((hourglassState == 0 ? string.Empty : "\b\b") + hourglass[hourglassState % hourglass.Length] + " ");
499499
hourglassState++;
500500
}
501501
else
@@ -507,7 +507,7 @@ private async Task RunTheIntrospection(TdvWebServiceClient tdvClient, IInfoOutpu
507507
+ (overallProgress.ToBeRemoved > 0 ? $", del:{overallProgress.Removed}/{overallProgress.ToBeRemoved}" : string.Empty)
508508
+ (overallProgress.Warnings > 0 ? $", warn:{overallProgress.Warnings}" : string.Empty)
509509
+ (overallProgress.Errors > 0 ? $", err:{overallProgress.Errors}" : string.Empty)
510-
+ ")"
510+
+ ") "
511511
);
512512
previousProgressState = overallProgress;
513513
hourglassState = 0;

0 commit comments

Comments
 (0)