Marvin Preuss
d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
340 B
Go
16 lines
340 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package env
|
|
|
|
import "strings"
|
|
|
|
func toMap(env []string) map[string]string {
|
|
r := map[string]string{}
|
|
for _, e := range env {
|
|
p := strings.SplitN(e, "=", 2)
|
|
r[p[0]] = p[1]
|
|
}
|
|
return r
|
|
}
|