fix: return if erroring out

This commit is contained in:
decentral1se 2021-07-24 23:30:42 +02:00
parent 6eee02d90a
commit 45c3bce7ff
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 0 deletions

View File

@ -188,6 +188,7 @@ var recipeVersionCommand = &cli.Command{
apps, err := ReadApps()
if err != nil {
logrus.Fatal(err)
return nil
}
if app, ok := apps[recipe]; ok {