| Index: lib/src/context.dart
|
| diff --git a/lib/src/context.dart b/lib/src/context.dart
|
| index a05ffda602947b31077172bba0e324d30949dee0..5331e3701ecf094244b93350f1ebc0a6939080b6 100644
|
| --- a/lib/src/context.dart
|
| +++ b/lib/src/context.dart
|
| @@ -412,7 +412,7 @@ class Context {
|
| /// thrown.
|
| String relative(String path, {String from}) {
|
| // Avoid expensive computation if the path is already relative.
|
| - if (from == null && this.isRelative(path)) return path;
|
| + if (from == null && this.isRelative(path)) return this.normalize(path);
|
|
|
| // Avoid calling [current] since it is slow and calling join() when
|
| // [from] is absolute does nothing.
|
|
|