| Index: samples/third_party/todomvc/build.dart
|
| diff --git a/samples/third_party/todomvc/build.dart b/samples/third_party/todomvc/build.dart
|
| index 598462e21e24522ac5652d9d1a456231c0e3446a..3bac4f675d8ed513823e5ec73909958886f23dc0 100755
|
| --- a/samples/third_party/todomvc/build.dart
|
| +++ b/samples/third_party/todomvc/build.dart
|
| @@ -5,8 +5,8 @@
|
|
|
| import 'dart:io';
|
| import 'package:polymer/component_build.dart';
|
| +import 'package:polymer/deploy.dart' as deploy;
|
|
|
| void main() {
|
| - var args = new Options().arguments.toList()..addAll(['--', '--deploy']);
|
| - build(args, ['web/index.html']);
|
| + build(new Options().arguments, ['web/index.html']).then((_) => deploy.main());
|
| }
|
|
|