Fix curl
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2021-05-18 17:08:23 +02:00
parent 1dcd939bc1
commit 2cc25e8cf1
2 changed files with 6 additions and 3 deletions

View File

@ -18,7 +18,8 @@ steps:
image: debian
commands:
- apt-get update
- apt-get install -y --no-install-recommends calibre curl
- apt-get install -y --no-install-recommends calibre
- apt-get install -y curl
- bash -x convert.sh
- bash -x upload.sh
environment:

View File

@ -42,11 +42,13 @@ for volume_tag in tags:
for pagination in text.find_all('a'):
pagination.decompose()
for image in text.find_all('img'):
image.decompose()
for cut in text.find_all('hr'):
cut.decompose()
if volume >= 7:
for image in text.find_all('img'):
image.decompose()
print(title)
chapter = create_chapter_from_string(str(text), title)