Index: utils/pub/system_cache.dart |
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart |
index 50b022ee2495435c83fb433a0db1c2842da036a5..b3cbb98d7db5c132cf97533c70b2e0fa7e04f24b 100644 |
--- a/utils/pub/system_cache.dart |
+++ b/utils/pub/system_cache.dart |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
@@ -9,6 +9,7 @@ import 'dart:async'; |
import 'git_source.dart'; |
import 'hosted_source.dart'; |
+import 'path_source.dart'; |
import 'io.dart'; |
import 'io.dart' as io show createTempDir; |
import 'log.dart' as log; |
@@ -48,6 +49,7 @@ class SystemCache { |
cache.register(new SdkSource()); |
cache.register(new GitSource()); |
cache.register(new HostedSource()); |
+ cache.register(new PathSource()); |
cache.sources.setDefault('hosted'); |
return cache; |
} |