Merge "Remove a redundant null check"

This commit is contained in:
Zuul 2020-01-23 19:45:02 +00:00 committed by Gerrit Code Review
commit 0528b76b9c

View File

@ -42,11 +42,6 @@ func GenerateBootstrapIso(settings *environment.AirshipCTLSettings, args []strin
return err
}
// TODO (dukov) This check should be implemented as part of the config module
if manifest == nil {
return config.ErrMissingConfig{What: "manifest for currnet context not found"}
}
if err = verifyInputs(cfg); err != nil {
return err
}