| Index: utils/apidoc/apidoc.dart
|
| diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
|
| index 6b9539ac45aa641c7811b57905b3d088a93a2b8b..92f12c9445ec459705b847c88213919f393e593d 100644
|
| --- a/utils/apidoc/apidoc.dart
|
| +++ b/utils/apidoc/apidoc.dart
|
| @@ -67,7 +67,6 @@ void main() {
|
| }
|
|
|
| final frogPath = joinPaths(doc.scriptDir, '../../frog/');
|
| - final libDir = joinPaths(frogPath, 'lib');
|
|
|
| if (compilerPath === null) {
|
| compilerPath = joinPaths(frogPath, 'frog.py');
|
| @@ -80,7 +79,7 @@ void main() {
|
|
|
| final clientScript = (mode == doc.MODE_STATIC) ?
|
| 'static' : 'live-nav';
|
| - final Future scriptCompiled = doc.compileScript(compilerPath, libDir,
|
| + final Future scriptCompiled = doc.compileScript(compilerPath,
|
| '${doc.scriptDir}/../../lib/dartdoc/client-$clientScript.dart',
|
| '${outputDir}/client-$clientScript.js');
|
|
|
|
|