fix: handle error for reading apps

This commit is contained in:
2021-07-31 18:47:32 +02:00
parent 4d12a75494
commit 760ac495b3

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{}