1
0
forked from ALHP/ALHP.GO

fixed missing space between flags

This commit is contained in:
2022-06-19 02:58:28 +02:00
parent 2f1857a97c
commit 08dd19c3ef

View File

@@ -770,7 +770,7 @@ func parseFlagSection(section interface{}, makepkgConf string, march string) (st
var orgMatch []string
for _, match := range varsReg {
if strings.ToLower(match[1]) == subSec.(string) {
flags = strings.Split(reEnvClean.ReplaceAllString(match[3], ""), " ")
flags = strings.Split(reEnvClean.ReplaceAllString(match[3], " "), " ")
orgMatch = match
}
}