feat(epub): use poper file name

This commit is contained in:
FineFindus
2023-08-05 22:16:13 +02:00
parent fc8c87bee5
commit 5c3adee95b

View File

@@ -22,4 +22,9 @@ sed -i 's|../paging-introduction/||g' book/book.md
# go to work dir and create epub # go to work dir and create epub
cd book/ cd book/
pandoc book.md -o book.epub --metadata cover-image="../cover.png" --metadata title="Writing an OS in Rust" --metadata author="Philipp Oppermann" --metadata description="This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code, so you can follow along if you like. The source code is also available in the corresponding Github repository." pandoc book.md -o "Writing an OS in Rust.epub" --metadata cover-image="../cover.png" --metadata title="Writing an OS in Rust" --metadata author="Philipp Oppermann" --metadata description="This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code, so you can follow along if you like. The source code is also available in the corresponding Github repository."
#clean up
cd ..
mv "book/Writing an OS in Rust.epub" .
rm -rf book/