| Index: pkg/csslib/lib/css.dart
|
| diff --git a/pkg/csslib/lib/css.dart b/pkg/csslib/lib/css.dart
|
| index 92070ad065bd0fae1241c71298e2c85fe892bb0d..2d94e5c334cb768c24f2912fdceac9c7f1c31085 100644
|
| --- a/pkg/csslib/lib/css.dart
|
| +++ b/pkg/csslib/lib/css.dart
|
| @@ -14,9 +14,9 @@ import 'visitor.dart';
|
| import 'src/messages.dart';
|
| import 'src/options.dart';
|
|
|
| -void main() {
|
| +void main(List<String> arguments) {
|
| // TODO(jmesserly): fix this to return a proper exit code
|
| - var options = PreprocessorOptions.parse(new Options().arguments);
|
| + var options = PreprocessorOptions.parse(arguments);
|
| if (options == null) return;
|
|
|
| messages = new Messages(options: options);
|
|
|