Explorar o código

Add TODO lines for windows

Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
Derek McGowan %!s(int64=10) %!d(string=hai) anos
pai
achega
a34a7930b5
Modificáronse 2 ficheiros con 2 adicións e 0 borrados
  1. 1 0
      docker/flags.go
  2. 1 0
      integration-cli/docker_cli_daemon_test.go

+ 1 - 0
docker/flags.go

@@ -29,6 +29,7 @@ func getHomeDir() string {
 }
 
 func getDaemonConfDir() string {
+	// TODO: update for Windows daemon
 	if runtime.GOOS == "windows" {
 		return filepath.Join(os.Getenv("USERPROFILE"), ".docker")
 	}

+ 1 - 0
integration-cli/docker_cli_daemon_test.go

@@ -354,6 +354,7 @@ func TestDaemonVolumesBindsRefs(t *testing.T) {
 }
 
 func TestDaemonKeyGeneration(t *testing.T) {
+	// TODO: skip or update for Windows daemon
 	os.Remove("/etc/docker/key.json")
 	d := NewDaemon(t)
 	if err := d.Start(); err != nil {