Skip to content

Commit

Permalink
Disables CLI pager
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Mar 11, 2019
1 parent b6a34a5 commit 478f910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AnalysisPrograms/Production/MainEntryUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ internal static void PrintUsage(string message, Usages usageStyle, string comman
if (usageStyle == Usages.All)
{
// print entire usage
root.ShowHelp();
root.ShowHelp(false);
}
else if (usageStyle == Usages.Single)
{
Expand All @@ -300,7 +300,7 @@ internal static void PrintUsage(string message, Usages usageStyle, string comman
}
}

command.ShowHelp();
command.ShowHelp(false);
}
else if (usageStyle == Usages.ListAvailable)
{
Expand Down

0 comments on commit 478f910

Please sign in to comment.