Skip to content

Commit

Permalink
path for addl metadata should be absolute to the current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Nov 17, 2022
1 parent 4cc72a2 commit a25ae73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (p *Pipeline) Start(configData config.Interface) error {
os.Exit(1)
}
for _, metadataPath := range paths.([]string) {
err = addlMetadataEngine.SetVersion(metadataPath, p.Data.ReleaseVersion)
err = addlMetadataEngine.SetVersion(path.Join(p.Data.GitLocalPath, metadataPath), p.Data.ReleaseVersion)
if err != nil {
fmt.Printf("FATAL: %+v\n", err)
os.Exit(1)
Expand Down

0 comments on commit a25ae73

Please sign in to comment.