This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/convert.sh
Michel Roux f987bf4650
Some checks reported errors
continuous-integration/drone/push Build was killed
Do not convert to mobi
2022-01-19 10:42:20 +00:00

8 lines
141 B
Bash

#!/usr/bin/env bash
for FILE in output/epubs/*
do
ebook-polish -fpuiU "${FILE}" "${FILE}"
ebook-convert "${FILE}" "${FILE%.*}.pdf"
done