podman/pkg/env/env_unsupported.go
Brent Baude 70e6b2e6dd make env handling os dependent
environment variables are handled differently on windows vs linux.  here we split them to be handled but no actually processing of windows environment variables was done.  it can be added for future.  hoowever, now we dont get errors on windows about processing them.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2020-06-02 08:28:08 -05:00

9 lines
143 B
Go

// +build !linux,!darwin
package env
func ParseSlice(s []string) (map[string]string, error) {
m := make(map[string]string)
return m, nil
}