[email protected] | 029b032 | 2013-04-23 21:44:26 +0000 | [diff] [blame] | 1 | // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 | // for details. All rights reserved. Use of this source code is governed by a | ||||
3 | // BSD-style license that can be found in the LICENSE file. | ||||
4 | |||||
Natalie Weizenbaum | a2373cc | 2015-05-21 17:11:41 -0700 | [diff] [blame] | 5 | import 'package:pub/src/command_runner.dart'; |
Sigurd Meldgaard | 63b56ea | 2020-10-28 14:16:50 +0100 | [diff] [blame] | 6 | import 'package:pub/src/io.dart'; |
[email protected] | 97c295c | 2013-04-24 22:18:39 +0000 | [diff] [blame] | 7 | |
Sigurd Meldgaard | 4920112 | 2020-10-19 12:04:50 +0200 | [diff] [blame] | 8 | Future<void> main(List<String> arguments) async { |
Sigurd Meldgaard | 63b56ea | 2020-10-28 14:16:50 +0100 | [diff] [blame] | 9 | await flushThenExit(await PubCommandRunner().run(arguments)); |
[email protected] | 97c295c | 2013-04-24 22:18:39 +0000 | [diff] [blame] | 10 | } |