mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-23 19:05:37 +00:00
Fix typo that meant modules were missing from image
fix #1393 thanks @deitch Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
parent
a7bda72430
commit
8d22f19618
@ -194,7 +194,7 @@ func untarKernel(buf *bytes.Buffer, bzimageName, ktarName string) (*bytes.Buffer
|
||||
}
|
||||
case ktarName:
|
||||
ktar = new(bytes.Buffer)
|
||||
_, err := io.Copy(bzimage, tr)
|
||||
_, err := io.Copy(ktar, tr)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user