up
This commit is contained in:
parent
8173e1ba42
commit
4a265ca4af
1 changed files with 21 additions and 2 deletions
|
@ -10,11 +10,17 @@ import (
|
|||
"sort"
|
||||
"strings"
|
||||
|
||||
"slices"
|
||||
|
||||
"github.com/Masterminds/semver/v3"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"slices"
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
type localItem struct {
|
||||
Name string `yaml:"name"`
|
||||
}
|
||||
|
||||
func isYAMLFileName(path string) bool {
|
||||
return strings.HasSuffix(path, ".yaml") || strings.HasSuffix(path, ".yml")
|
||||
}
|
||||
|
@ -214,9 +220,22 @@ func (h *Hub) itemVisit(path string, f os.DirEntry, err error) error {
|
|||
|
||||
_, fileName := filepath.Split(path)
|
||||
|
||||
item := localItem{}
|
||||
itemContent, err := os.ReadFile(path)
|
||||
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to read %s: %w", path, err)
|
||||
}
|
||||
|
||||
err = yaml.Unmarshal(itemContent, &item)
|
||||
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to unmarshal %s: %w", path, err)
|
||||
}
|
||||
|
||||
h.Items[info.ftype][info.fname] = &Item{
|
||||
hub: h,
|
||||
Name: info.fname,
|
||||
Name: item.Name,
|
||||
Stage: info.stage,
|
||||
Installed: true,
|
||||
Type: info.ftype,
|
||||
|
|
Loading…
Reference in a new issue