| Index: samples/third_party/todomvc/build.dart
|
| diff --git a/samples/third_party/todomvc/build.dart b/samples/third_party/todomvc/build.dart
|
| index 39dbb1e238cd7a880aa551466027035f8d672414..598462e21e24522ac5652d9d1a456231c0e3446a 100755
|
| --- a/samples/third_party/todomvc/build.dart
|
| +++ b/samples/third_party/todomvc/build.dart
|
| @@ -4,8 +4,9 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import 'dart:io';
|
| -import 'package:web_ui/component_build.dart';
|
| +import 'package:polymer/component_build.dart';
|
|
|
| void main() {
|
| - build(new Options().arguments, ['web/index.html']);
|
| + var args = new Options().arguments.toList()..addAll(['--', '--deploy']);
|
| + build(args, ['web/index.html']);
|
| }
|
|
|