Skip to content

Commit

Permalink
Skip "Precondition bellwether" in recipeList
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 25, 2023
1 parent 669c875 commit 0fd23e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,11 @@ class RecipeMarkdownGenerator : Runnable {
}
val pathToRecipes = pathToRecipesBuilder.toString()
for (recipe in recipeDescriptor.recipeList) {
// https://github.com/openrewrite/rewrite-docs/issues/250
if (recipe.displayName == "Precondition bellwether") {
continue
}

writeln("* [" + recipe.displayName + "](" + pathToRecipes + getRecipePath(recipe) + ".md)")
if (recipe.options.isNotEmpty()) {
for (option in recipe.options) {
Expand Down

0 comments on commit 0fd23e6

Please sign in to comment.