fix: handle error for reading apps

This commit is contained in:
decentral1se 2021-07-31 18:47:32 +02:00
parent 4d12a75494
commit 760ac495b3
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 0 deletions

View File

@ -197,6 +197,9 @@ can take some time.
}
apps, err := config.GetApps(appFiles)
if err != nil {
logrus.Fatal(err)
}
sort.Sort(config.ByServerAndType(apps))
statuses := map[string]string{}