Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Light-Beacon committed Aug 7, 2024
1 parent 1cc2c88 commit 46fe490
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ def command_build(args):
build_and_output(project, page, page_output_path)
else:
page = args.page
if not page:
page = project.default_page
if args.dry_run:
page_output_path = None
else:
page_output_path = f"{output_path}"
build_and_output(project, page, page_output_path)
if not page:
page = project.default_page
if args.dry_run:
page_output_path = None
else:
page_output_path = f"{output_path}"
build_and_output(project, page, page_output_path)


def command_server(args):
Expand Down

0 comments on commit 46fe490

Please sign in to comment.