Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ on:
push:
branches:
- main
paths:
- ".github/workflows/test.yml"
- "src/re_plugin_pack/**"
- "tests/**"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/test.yml"
- "src/re_plugin_pack/**"
- "src/**"
- "tests/**"
- "pyproject.toml"
jobs:
Expand Down
2 changes: 2 additions & 0 deletions src/render_engine_cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ def get_editor(ctx: click.Context, param: click.Option, value: str) -> str | Non

def handle_content_file(ctx: click.Context, param: click.Option, value: str) -> str | None:
"""Handle the content file"""
if not value:
return None
if value == "stdin":
content = list()
click.secho('Please enter the content. To finish, put a "." on a blank line.', fg="green")
Expand Down
Loading