Skip to content

Commit a5d2e8b

Browse files
committed
Remove spaces from ebook filenames
1 parent bc93e0e commit a5d2e8b

5 files changed

+2
-2
lines changed

build_ebook.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ def main() -> None:
228228
logging.info(f"{lang}: building epub...")
229229
epub_file = build_epub(markdown_file, out_dir / f"{lang}.epub")
230230

231-
shutil.copy(pdf_file, f"ebook/Vulkan Tutorial {lang}.pdf")
232-
shutil.copy(epub_file, f"ebook/Vulkan Tutorial {lang}.epub")
231+
shutil.copy(pdf_file, f"ebook/vulkan_tutorial_{lang}.pdf")
232+
shutil.copy(epub_file, f"ebook/vulkan_tutorial_{lang}.epub")
233233

234234
logging.info("done")
235235

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)