Skip to content

Commit c3bf619

Browse files
committed
Always stop startup timer
1 parent 45a5d2d commit c3bf619

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/src/serve_command.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,11 @@ class ServeCommand extends Command<int> {
210210
final elapsedSeconds =
211211
(startupTimer.elapsedMilliseconds / 1000).toStringAsFixed(1);
212212
stdout.writeln('[INFO] Succeeded after $elapsedSeconds seconds');
213-
startupTimer.stop();
214213
}
215214
}
216215

216+
startupTimer.stop();
217+
217218
return exitCodeCompleter.future;
218219
}
219220
}

0 commit comments

Comments
 (0)