Files
shorebird/bin/shorebird.dart
T
2023-03-02 11:37:56 -06:00

19 lines
630 B
Dart

import 'dart:io';
import 'package:shorebird_cli/src/command_runner.dart';
Future<void> main(List<String> args) async {
await _flushThenExit(await ShorebirdCliCommandRunner().run(args));
}
/// Flushes the stdout and stderr streams, then exits the program with the given
/// status code.
///
/// This returns a Future that will never complete, since the program will have
/// exited already. This is useful to prevent Future chains from proceeding
/// after you've decided to exit.
Future<void> _flushThenExit(int status) {
return Future.wait<void>([stdout.close(), stderr.close()])
.then<void>((_) => exit(status));
}