This commit is contained in:
ryuukk 2025-04-27 15:36:21 +00:00 committed by GitHub
commit 14600f1b6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 4 deletions

View File

@ -168,7 +168,7 @@ else
if (help)
{
printHelp(args[0]);
printHelp(args[0], true);
return 0;
}
@ -250,7 +250,7 @@ else
}
else if (optionCount < 1)
{
printHelp(args[0]);
printHelp(args[0], false);
return 1;
}
@ -416,9 +416,10 @@ else
return 0;
}
void printHelp(string programName)
void printHelp(string programName, bool stdOut)
{
stdout.writefln(`
auto f = stdOut ? stdout : stderr;
f.writefln(`
Usage: %1$s <options>
Human-readable output: