Skip to content

Commit

Permalink
Fix sourceLoadingStage discarding sources
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillp committed Sep 7, 2024
1 parent 7e7ea1f commit a2d0837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/specter/pipelinedefault.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (s sourceLoadingStage) processSourceLocation(ctx PipelineContext, sl string
if err != nil {
return nil, err
}
ctx.Sources = append(ctx.Sources, loadedSources...)
sources = append(sources, loadedSources...)
}
return sources, nil
}
Expand Down

0 comments on commit a2d0837

Please sign in to comment.