Skip to content

Commit a57ebdd

Browse files
Merge pull request linuxkit#3581 from deitch/lint
fix lint issue
2 parents ffea2a2 + 4ceaf86 commit a57ebdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/linuxkit/pkglib/manifest.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
push.go and util.go. It then was modified to remove any command-line dependencies.
3333
*/
3434

35-
func pushManifestList(auth dockertypes.AuthConfig, input types.YAMLInput, ignoreMissing, insecure, plainHttp bool, configDir string) (hash string, length int, err error) {
35+
func pushManifestList(auth dockertypes.AuthConfig, input types.YAMLInput, ignoreMissing, insecure, plainHTTP bool, configDir string) (hash string, length int, err error) {
3636
// resolve the target image reference for the combined manifest list/index
3737
targetRef, err := reference.ParseNormalizedNamed(input.Image)
3838
if err != nil {
@@ -44,7 +44,7 @@ func pushManifestList(auth dockertypes.AuthConfig, input types.YAMLInput, ignore
4444
configDirs = append(configDirs, filepath.Join(configDir, "config.json"))
4545
}
4646
resolver := newResolver(auth.Username, auth.Password, insecure,
47-
plainHttp, configDirs...)
47+
plainHTTP, configDirs...)
4848

4949
imageType := types.Docker
5050
manifestList := types.ManifestList{

0 commit comments

Comments
 (0)