Skip to content

Commit

Permalink
Fix updater. It was looking for the wrong files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcomplete committed Nov 5, 2015
1 parent 9241ef1 commit f64f9fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/fitness/flutter.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fitness
version: 0.0.1
update-url: http://localhost:9888/examples/fitness/
update-url: http://localhost:9888/
material-design-icons:
- name: action/assessment
- name: action/help
Expand Down
2 changes: 1 addition & 1 deletion examples/stocks/flutter.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stocks
version: 0.0.2
update-url: http://localhost:9888/examples/stocks/
update-url: http://localhost:9888/
material-design-icons:
- name: action/account_balance
- name: action/assessment
Expand Down
4 changes: 2 additions & 2 deletions sky/packages/updater/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import 'package:yaml/yaml.dart' as yaml;
import 'pipe_to_file.dart';
import 'version.dart';

const String kManifestFile = 'sky.yaml';
const String kBundleFile = 'flutter.flx';
const String kManifestFile = 'flutter.yaml';
const String kBundleFile = 'app.flx';

UpdateServiceProxy _initUpdateService() {
UpdateServiceProxy updateService = new UpdateServiceProxy.unbound();
Expand Down

0 comments on commit f64f9fd

Please sign in to comment.