From 06663fb44c88d79a6e0c404479da6c07eea17139 Mon Sep 17 00:00:00 2001 From: Sebastian Achilles <s.achilles@fz-juelich.de> Date: Sat, 22 Oct 2022 11:58:12 +0200 Subject: [PATCH] Update table generator --- bin/table_generator | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/table_generator b/bin/table_generator index 2faf74f05..d88e5743e 100755 --- a/bin/table_generator +++ b/bin/table_generator @@ -124,6 +124,10 @@ def sw_loop(eb_files): else: eb_version = eb_l[1] next_i = 2 + elif len(eb_l) == 2: + # Asume the name is actually composed of 1 parts separated by - + eb_version = eb_l[1] + next_i = 2 else: # Assume the name is actually composed of 2 parts separated by - eb_name = '-'.join([eb_name, eb_l[1]]) -- GitLab