Skip to content

Commit

Permalink
fix(libcimatrix): convert any underscores to hyphens for suite names
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Sep 27, 2019
1 parent 76ea081 commit 585ca2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssf/libcimatrix.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
{#- Only add a prefix if suite_name is given #}
{%- set prefix = '' %}
{%- if suite_name %}
{%- set prefix = suite_name ~ '-' %}
{%- set prefix = suite_name|replace('_', '-') ~ '-' %}
{%- endif %}
{#- This `if` block is temporary and should eventually be removed #}
{%- if old_ci_files and loop.index0 == 0 %}
Expand Down

0 comments on commit 585ca2b

Please sign in to comment.