diff options
author | Linus Groh <mail@linusgroh.de> | 2022-05-29 00:52:58 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-29 10:24:31 +0200 |
commit | f377951178dcc29e0a0b776f20576f76c86bc666 (patch) | |
tree | 78f37db34b540b97f8548bf4e48d6e02f2d33836 /Meta/build-manpages-website.sh | |
parent | 9e694c9d83c8f34d034ed16fbba3eb1a7676847f (diff) | |
download | serenity-f377951178dcc29e0a0b776f20576f76c86bc666.zip |
Meta: Update manpages website build script to handle non-icon images
Adding an image to man7/Audio-subsystem.md referencing a non-icon image
file in the same directory broke the automated build of the manpages
website, which was not prepared to handle this case.
Diffstat (limited to 'Meta/build-manpages-website.sh')
-rwxr-xr-x | Meta/build-manpages-website.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/build-manpages-website.sh b/Meta/build-manpages-website.sh index 83683671a6..f58df70892 100755 --- a/Meta/build-manpages-website.sh +++ b/Meta/build-manpages-website.sh @@ -105,6 +105,7 @@ pandoc -f gfm -t html5 -s \ # Copy pre-made files cp Meta/Websites/man.serenityos.org/banner.png output/ +cp Base/usr/share/man/man7/LibDSP_classes.svg output/ # Copy icons mkdir output/icons |