mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
Meta: Use parallel rsync for file coyping for online manpages
The main point is to bring this in line with all the other file copying,
which is always done via rsync.
On my machine this leads to very little speedup, but I'm also on WSL, so
🤷
Timings:
Before:
Time (abs ≡): 20.440 s [User: 133.928 s, System: 12.290 s]
After:
Time (abs ≡): 20.346 s [User: 135.534 s, System: 11.207 s]
This commit is contained in:
parent
a205efd900
commit
20f44e095d
1 changed files with 3 additions and 3 deletions
|
@ -100,9 +100,9 @@ pandoc -f gfm -t html5 -s \
|
||||||
|
|
||||||
# Copy pre-made files
|
# Copy pre-made files
|
||||||
echo 'Copying images'
|
echo 'Copying images'
|
||||||
cp Meta/Websites/man.serenityos.org/banner.png output/
|
rsync -a Meta/Websites/man.serenityos.org/banner.png output/ &
|
||||||
cp Base/usr/share/man/man7/LibDSP_classes.svg output/
|
rsync -a Base/usr/share/man/man7/LibDSP_classes.svg output/ &
|
||||||
cp Base/usr/share/man/man1/*.png output/
|
rsync -a Base/usr/share/man/man1/*.png output/ &
|
||||||
|
|
||||||
# Copy icons
|
# Copy icons
|
||||||
mkdir output/icons
|
mkdir output/icons
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue