Index: lib/src/command/build.dart |
diff --git a/lib/src/command/build.dart b/lib/src/command/build.dart |
index b4457a5651bd9810d4c2be8050817b3bf114b948..6ed2c123902bc159ebdbdb22a6bcccf48b220673 100644 |
--- a/lib/src/command/build.dart |
+++ b/lib/src/command/build.dart |
@@ -87,8 +87,8 @@ class BuildCommand extends BarbackCommand { |
(entry) => logJson.add(_logEntryToJson(entry))); |
} |
- var assets = await log.progress("Building ${entrypoint.root.name}", |
- () async { |
+ var assets = await log.progress/*<AssetSet>*/( |
+ "Building ${entrypoint.root.name}", () async { |
// Register all of the build directories. |
// TODO(rnystrom): We don't actually need to bind servers for these, we |
// just need to add them to barback's sources. Add support to |