Fix splitting all '='

This commit is contained in:
Kevin Cotugno 2020-12-30 12:52:06 -07:00
parent c99ba53f8e
commit 0701d9f484

View File

@ -275,7 +275,7 @@ func parseEnvironment(raw string) map[string]string {
continue
}
splitVar := strings.Split(v, "=")
splitVar := strings.SplitN(v, "=", 2)
if len(splitVar) > 1 {
vars[splitVar[0]] = splitVar[1]
}