From 5e2701964bef336758be7c5a05b56319f519ac81 Mon Sep 17 00:00:00 2001 From: Stepan Oksanichenko Date: Fri, 27 Sep 2024 17:42:27 +0300 Subject: [PATCH] - Use space instead of dash in full name of a product --- pungi-build.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pungi-build.conf.j2 b/pungi-build.conf.j2 index 521f355..0edc28b 100644 --- a/pungi-build.conf.j2 +++ b/pungi-build.conf.j2 @@ -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 }}"