Skip to content

Commit

Permalink
Add FIXMEs
Browse files Browse the repository at this point in the history
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
  • Loading branch information
mtrmac committed Feb 7, 2020
1 parent 757b0cb commit 019bcdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/podman/load.go
Expand Up @@ -95,8 +95,8 @@ func loadCmd(c *cliconfig.LoadValues) error {
return err
}
if len(imageName) > 0 {
split := strings.Split(names, ",")
newImage, err := runtime.NewImageFromLocal(split[0])
split := strings.Split(names, ",") // FIXME: This should just be an array
newImage, err := runtime.NewImageFromLocal(split[0]) // FIXME: How does it make sense to use the name for one iamge and ignore the others?... It doesn't really work anyway.
if err != nil {
return err
}
Expand Down

0 comments on commit 019bcdd

Please sign in to comment.