Fix updater. It was looking for the wrong files.

This commit is contained in:
Matt Perry 2015-11-05 17:56:50 -05:00
parent 7bafe54a5e
commit 72c17afa06
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
name: fitness name: fitness
version: 0.0.1 version: 0.0.1
update-url: http://localhost:9888/examples/fitness/ update-url: http://localhost:9888/
material-design-icons: material-design-icons:
- name: action/assessment - name: action/assessment
- name: action/help - name: action/help

View File

@ -1,6 +1,6 @@
name: stocks name: stocks
version: 0.0.2 version: 0.0.2
update-url: http://localhost:9888/examples/stocks/ update-url: http://localhost:9888/
material-design-icons: material-design-icons:
- name: action/account_balance - name: action/account_balance
- name: action/assessment - name: action/assessment

View File

@ -18,8 +18,8 @@ import 'package:yaml/yaml.dart' as yaml;
import 'pipe_to_file.dart'; import 'pipe_to_file.dart';
import 'version.dart'; import 'version.dart';
const String kManifestFile = 'sky.yaml'; const String kManifestFile = 'flutter.yaml';
const String kBundleFile = 'flutter.flx'; const String kBundleFile = 'app.flx';
UpdateServiceProxy _initUpdateService() { UpdateServiceProxy _initUpdateService() {
UpdateServiceProxy updateService = new UpdateServiceProxy.unbound(); UpdateServiceProxy updateService = new UpdateServiceProxy.unbound();