Merge pull request #174 from Nontre12/fix-gen-main

Fix change directory output_dir option on gen-main
This commit is contained in:
Ricter Zheng 2020-10-15 01:47:51 +08:00 committed by GitHub
commit 4ac161a38c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -6,3 +6,4 @@ include nhentai/viewer/scripts.js
include nhentai/viewer/main.html
include nhentai/viewer/main.css
include nhentai/viewer/main.js
include nhentai/viewer/logo.png

View File

@ -94,8 +94,11 @@ def main():
elif options.is_pdf:
generate_pdf(options.output_dir, doujinshi, options.rm_origin_dir)
if options.main_viewer:
if options.main_viewer and options.output_dir:
generate_main_html(options.output_dir)
elif options.main_viewer:
generate_main_html()
if not platform.system() == 'Windows':
logger.log(15, '🍻 All done.')