From 140b0327d6a4cea51c5a0a4f9894c6d41a754d48 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?B=C3=A1lint=20R=C3=A9thelyi?= <rethelyibalint@gmail.com>
Date: Tue, 23 Mar 2021 13:27:35 +0100
Subject: [PATCH] filelist fixfix

---
 plab/filelist.go | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/plab/filelist.go b/plab/filelist.go
index 444fcaf..c247be8 100644
--- a/plab/filelist.go
+++ b/plab/filelist.go
@@ -50,6 +50,9 @@ func mapizator(list []string) map[string]string {
 
 	for _, v := range list {
 		elements := strings.Split(v, "=")
+		if len(elements) != 2 {
+			continue
+		}
 		list_map[elements[0]] = elements[1]
 	}
 	return list_map
-- 
GitLab