Skip to content
Snippets Groups Projects
Verified Commit 140b0327 authored by Réthelyi Bálint's avatar Réthelyi Bálint :no_mouth:
Browse files

filelist fixfix

parent 2d28debd
No related branches found
No related tags found
No related merge requests found
Pipeline #7049 passed
...@@ -50,6 +50,9 @@ func mapizator(list []string) map[string]string { ...@@ -50,6 +50,9 @@ func mapizator(list []string) map[string]string {
for _, v := range list { for _, v := range list {
elements := strings.Split(v, "=") elements := strings.Split(v, "=")
if len(elements) != 2 {
continue
}
list_map[elements[0]] = elements[1] list_map[elements[0]] = elements[1]
} }
return list_map return list_map
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment