Merge pull request #693 from 14rcole/libkpod-config

add basic config struct to libkpod
This commit is contained in:
Mrunal Patel 2017-07-28 06:24:45 -07:00 committed by GitHub
commit 13c874753c
16 changed files with 403 additions and 237 deletions

View file

@ -60,7 +60,11 @@ var (
)
func imagesCmd(c *cli.Context) error {
store, err := getStore(c)
config, err := getConfig(c)
if err != nil {
return errors.Wrapf(err, "Could not get config")
}
store, err := getStore(config)
if err != nil {
return err
}