Index: sdk/lib/_internal/pub/lib/src/io.dart |
diff --git a/sdk/lib/_internal/pub/lib/src/io.dart b/sdk/lib/_internal/pub/lib/src/io.dart |
index fd5af928dc402bbd69a081922c53bc20766bff2e..1186cdeb86f012299ca5fc7ba3663b0df7c9bb52 100644 |
--- a/sdk/lib/_internal/pub/lib/src/io.dart |
+++ b/sdk/lib/_internal/pub/lib/src/io.dart |
@@ -414,8 +414,8 @@ String get repoRoot { |
if (runningFromSdk) { |
throw new StateError("Can't get the repo root from the SDK."); |
} |
- return path.join( |
- path.dirname(libraryPath('pub.io')), '..', '..', '..', '..', '..', '..'); |
+ return path.normalize(path.join( |
+ path.dirname(libraryPath('pub.io')), '..', '..', '..', '..', '..', '..')); |
} |
/// A line-by-line stream of standard input. |