Skip to content

Commit

Permalink
(cake-contribGH-359) Disable task graphs in documentation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Apr 24, 2019
1 parent 13cbdc2 commit f09da87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cake.Recipe/Content/parameters.cake
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public static class BuildParameters
bool shouldPublishChocolatey = true,
bool shouldPublishNuGet = true,
bool shouldPublishGitHub = true,
bool shouldDeployGraphDocumentation = true,
bool shouldDeployGraphDocumentation = false,
bool shouldGenerateDocumentation = true,
bool shouldExecuteGitLink = true,
bool shouldRunDupFinder = true,
Expand Down
3 changes: 2 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ BuildParameters.SetParameters(context: Context,
repositoryOwner: "cake-contrib",
repositoryName: "Cake.Recipe",
appVeyorAccountName: "cakecontrib",
shouldRunGitVersion: true);
shouldRunGitVersion: true,
shouldDeployGraphDocumentation: true);

BuildParameters.PrintParameters(Context);

Expand Down

0 comments on commit f09da87

Please sign in to comment.