mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 12:47:10 +00:00
- 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>
10 lines
91 B
Go
10 lines
91 B
Go
package moby
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func homeDir() string {
|
|
return os.Getenv("USERPROFILE")
|
|
}
|