Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add empty jinja block #458

Merged
merged 14 commits into from
Feb 26, 2021
2 changes: 2 additions & 0 deletions flow/templates/base_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ cd {{ project.config.project_dir }}
{% set cmd_suffix = cmd_suffix|default('') ~ (' &' if parallel else '') %}
{% for operation in operations %}

{% block before_operation %}
{% endblock %}
# {{ "%s"|format(operation) }}
{{ operation.cmd }}{{ cmd_suffix }}
{% if operation.eligible_operations|length > 0 %}
Expand Down