Skip to content

Commit

Permalink
Do not use legacy Makefile as it was removed (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgencur authored Aug 30, 2024
1 parent 8b7d3a2 commit a1b1d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/prowgen/prowgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ func copyOwnersFileIfNotPresent(dir string) error {
}

func RunOpenShiftReleaseGenerator(ctx context.Context, openShiftRelease Repository) error {
if _, err := Run(ctx, openShiftRelease, "make", "-f", "Makefile.legacy", "ci-operator-config", "jobs"); err != nil {
if _, err := Run(ctx, openShiftRelease, "make", "ci-operator-config", "jobs"); err != nil {
return err
}
return nil
Expand Down

0 comments on commit a1b1d23

Please sign in to comment.