- Use space instead of dash in full name of a product

This commit is contained in:
Stepan Oksanichenko 2024-09-27 17:42:27 +03:00
parent 42175e5417
commit 5e2701964b
Signed by: soksanichenko
GPG Key ID: AB9983172AB1E45B

View File

@ -9,8 +9,8 @@ from extra_options import *
# PRODUCT INFO
{% set full_product_name = product_name %}
release_name = "{{ full_product_name }}"
release_short = "{{ full_product_name | replace(' ', '-') }}"
release_name = "{{ full_product_name | replace('-', ' ') }}"
release_short = "{{ full_product_name }}"
release_version = "{{ distribution_major_version }}"
treeinfo_version = "{{ distribution_major_version }}"