Files
linuxkit/src/moby/util_windows.go
Justin Cormack e7ebabdb05 Split out into a small stub command line and a library
- this is pretty much the smallest change to split this out and it
  exposes a few things that can be improved later
- no change to logging yet

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-06-21 16:19:31 -07:00

10 lines
91 B
Go

package moby
import (
"os"
)
func homeDir() string {
return os.Getenv("USERPROFILE")
}