Skip to content

Commit

Permalink
fix(dev): correct placeholder for string from path to name
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtkeller committed Nov 1, 2024
1 parent 9dd7bec commit 41c3a13
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 40 deletions.
5 changes: 0 additions & 5 deletions config.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/pkg/domains/files/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (d Domain) GetResources(ctx context.Context) (types.DomainResources, error)
b, err := os.ReadFile(path)
if err != nil {
errs = errors.Join(errs, fmt.Errorf("error reading source files: %w", err))
drs[path] = ""
drs[f.Name] = ""
continue
}
drs[f.Name] = string(b)
Expand Down
34 changes: 0 additions & 34 deletions validation.yaml

This file was deleted.

0 comments on commit 41c3a13

Please sign in to comment.