Merge pull request #369 from jzelinskie/fix-ali

contrib: add missing :=
This commit is contained in:
Jimmy Zelinskie 2017-04-20 14:00:34 -04:00 committed by GitHub
commit ae78bdc586

View File

@ -154,7 +154,7 @@ func AnalyzeLocalImage(imageName string, minSeverity types.Priority, endpoint, m
// Retrieve history.
log.Println("Retrieving image history")
layerIDs, err = historyFromCommand(imageName)
layerIDs, err := historyFromCommand(imageName)
if err != nil || len(layerIDs) == 0 {
return fmt.Errorf("Could not get image's history: %s", err)
}