Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreGarvin committed Jan 31, 2021
1 parent 3fffcc7 commit e687807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func Parse(content string) *Map {
}

func parseLine(line string) (string, string) {
splitLine := strings.Split(line, "=")
splitLine := strings.SplitN(line, "=", 2)

return splitLine[0], splitLine[1]
}

0 comments on commit e687807

Please sign in to comment.