| Index: utils/apidoc/apidoc.dart
|
| diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
|
| index e73daa9fcd98b390b0827e336b45be8e2942b573..fc3c81430fff414c1a966c39aefa95835ed51e4e 100644
|
| --- a/utils/apidoc/apidoc.dart
|
| +++ b/utils/apidoc/apidoc.dart
|
| @@ -112,9 +112,9 @@ void main() {
|
|
|
| final includedLibraries = <String>[];
|
| var lister = new Directory.fromPath(
|
| - doc.scriptDir.append('../../pkg/')).list();
|
| + doc.scriptDir.append('../../pkg')).list();
|
| lister.onDir = (dirPath) {
|
| - var path = new Path(dirPath);
|
| + var path = new Path.fromNative(dirPath);
|
| var libname = path.filename;
|
| path = path.append('${libname}.dart');
|
| if (new File.fromPath(path).existsSync()) {
|
|
|