Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: sdk/lib/_internal/pub/lib/src/command/build.dart

Issue 110013003: Issue 15037. Warn users if they have “assets” dir anywhere inside “web” dir (http://dartbug.com/150… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Escape "\" in RegExps. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command/serve.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/build.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/build.dart b/sdk/lib/_internal/pub/lib/src/command/build.dart
index b8dee80c5291ceb1e7e621ae370b6432326a8925..b13e4d8bdb103e845d4df4542bb50b833ee19473 100644
--- a/sdk/lib/_internal/pub/lib/src/command/build.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/build.dart
@@ -52,9 +52,7 @@ class BuildCommand extends PubCommand {
var dart2jsTransformer;
var builtFiles = 0;
- return entrypoint.ensureLockFileIsUpToDate().then((_) {
- return entrypoint.loadPackageGraph();
- }).then((graph) {
+ return entrypoint.loadPackageGraph().then((graph) {
dart2jsTransformer = new Dart2JSTransformer(graph, mode);
var builtInTransformers = [
dart2jsTransformer,
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command/serve.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698