| Index: pkg/glob/lib/src/utils.dart
|
| diff --git a/pkg/glob/lib/src/utils.dart b/pkg/glob/lib/src/utils.dart
|
| index 40ac5a6e8e6467be9be729a5a2b80dd464a981d4..35526c0860556ce2b7340d29ab9d74ae675c5428 100644
|
| --- a/pkg/glob/lib/src/utils.dart
|
| +++ b/pkg/glob/lib/src/utils.dart
|
| @@ -65,6 +65,6 @@ String regExpQuote(String contents) =>
|
| ///
|
| /// This is useful when converting from Windows paths to globs.
|
| String separatorToForwardSlash(String path) {
|
| - if (p.context != p.Style.windows) return path;
|
| + if (p.style != p.Style.windows) return path;
|
| return path.replaceAll('\\', '/');
|
| }
|
|
|