Skip to content

Commit a1b2976

Browse files
godofredocCasey Hillers
and
Casey Hillers
authored
CP: Fix the path where footer is written. (flutter#114947)
* Add a script to post-process docs. (flutter#112228) * Do not upgrade packages in dev/bot. * Fix the path where footer is written. (flutter#114469) The footer file was being written in dev/bot instead of dev/docs. Bug: flutter#113805 Co-authored-by: Casey Hillers <[email protected]>
1 parent 013ada8 commit a1b2976

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)