Switch to relative paths so it works without docker as well

This commit is contained in:
Nemo 2019-01-31 15:31:32 +05:30
parent ae44b14dad
commit c08e0b6fde
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ Requirements:
- Ruby
- `gem install bundler`
- `gem install nokogiri`
- `bundle install`
- `brew install pandoc`
- `brew cask install calibre`
- `brew install wget`

View File

@ -39,7 +39,7 @@ fi
# Add extension to files.
# That because `pandoc` cannot generate the right `mime type` without the extension.
# https://github.com/captn3m0/google-sre-ebook/issues/19
IMGS_FILES="$(ls /src/html/${IMGS_DOMAIN}/*)"
IMGS_FILES="$(ls html/${IMGS_DOMAIN}/*)"
for FILE_NAME_FULL in ${IMGS_FILES}; do
# Get file vars.
@ -52,8 +52,8 @@ for FILE_NAME_FULL in ${IMGS_FILES}; do
done
ruby generate.rb
pushd html/landing.google.com/sre/${BOOK_FILE}/toc
bundle exec ruby generate.rb
pushd html/landing.google.com/sre/${BOOK_NAME}/toc
pandoc --from=html --to=epub \
--output=../../../../../${BOOK_FILE}.epub \
--epub-metadata=../../../../../${BOOK_NAME}.xml \