mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
fix: ensure the profile is a proper json file
This commit is contained in:
@@ -1080,7 +1080,11 @@ func CommandProfilesList(format string) error {
|
||||
}
|
||||
|
||||
output := []NodeProfile{}
|
||||
for _, data := range properties {
|
||||
for property, data := range properties {
|
||||
if !strings.HasSuffix(property, ".json") {
|
||||
continue
|
||||
}
|
||||
|
||||
var profile NodeProfile
|
||||
err := json.Unmarshal([]byte(data), &profile)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user