Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
glyn committed Mar 19, 2019
1 parent adcaa3a commit 5698f6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/packager/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewExporter(source, dest, logsDir string, l loader.Loader, thin, unsigned b
ctx := context.Background()
cli.NegotiateAPIVersion(ctx)
if err != nil {
return nil, fmt.Errorf("cannot negotation Docker client version: %v", err)
return nil, fmt.Errorf("cannot negotiate Docker client version: %v", err)
}

logs := filepath.Join(logsDir, "export-"+time.Now().Format("20060102150405"))
Expand Down
2 changes: 1 addition & 1 deletion pkg/packager/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func NewImporter(source, destination string, load loader.Loader, verbose bool) (
}
cli.NegotiateAPIVersion(context.Background())
if err != nil {
return nil, fmt.Errorf("cannot negotation Docker client version: %v", err)
return nil, fmt.Errorf("cannot negotiate Docker client version: %v", err)
}

return &Importer{
Expand Down

0 comments on commit 5698f6e

Please sign in to comment.