Przeglądaj źródła

Return “err” instead of “nil” when MkdirAll() fails when binding a volume

Michael Stapelberg 11 lat temu
rodzic
commit
e7fdcc15c5
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      container.go

+ 1 - 1
container.go

@@ -837,7 +837,7 @@ func (container *Container) Start() (err error) {
 		// Create the mountpoint
 		rootVolPath := path.Join(container.RootfsPath(), volPath)
 		if err := os.MkdirAll(rootVolPath, 0755); err != nil {
-			return nil
+			return err
 		}
 
 		// Do not copy or change permissions if we are mounting from the host