Skip to content

Commit 0186b14

Browse files
authored
Fix the path where footer is written. (#114469)
The footer file was being written in dev/bot instead of dev/docs. Bug: flutter/flutter#113805
1 parent 33b81ed commit 0186b14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/bots/post_process_docs.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Future<void> postProcess() async {
6565
final File versionFile = File('version');
6666
final String version = versionFile.readAsStringSync();
6767
// Recreate footer
68-
final String publishPath = path.join(docsPath, 'doc', 'api', 'footer.js');
68+
final String publishPath = path.join(docsPath, '..', 'docs', 'doc', 'flutter', 'footer.js');
6969
final File footerFile = File(publishPath)..createSync(recursive: true);
7070
createFooter(footerFile, version);
7171
}

0 commit comments

Comments
 (0)