Merge pull request #6 from laszewsk/main

Improve the Makefile
main
Erhard Maria Klein 3 years ago committed by GitHub
commit 27eda720dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,13 +4,21 @@
quickstart:
# git clone https://github.com/weitblick/epub.git
# cd epub
cd exampleSite
mkdir themes
cd themes
git clone https://github.com/weitblick/epub.git
cd epub
rm -rf .git
rm -rf exampleSite # remove the example site in the theme
cd ../..
hugo
bash ./deploy.sh
mkdir -p exampleSite/themes
cd exampleSite/themes; git clone https://github.com/weitblick/epub.git
rm -rf exampleSite/themes/epub/.git
rm -rf exampleSite/themes/epub/exampleSite
cd exampleSite; hugo
cd exampleSite; bash ./deploy.sh
echo "Your example epub is generated at"
echo
echo "exampleSite/ebook.epub"
echo
clean:
rm -rf exampleSite/themes
rm -rf exampleSite/*.epub
Loading…
Cancel
Save