-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for displaying the version with wt --version
#5501
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,7 @@ void AppHost::_HandleCommandlineArgs() | |
} | ||
|
||
const auto result = _logic.SetStartupCommandline({ args }); | ||
const auto message = _logic.EarlyExitMessage(); | ||
const auto message = _logic.ParseCommandlineMessage(); | ||
if (!message.empty()) | ||
{ | ||
const auto displayHelp = result == 0; | ||
|
@@ -115,7 +115,10 @@ void AppHost::_HandleCommandlineArgs() | |
GetStringResource(messageTitle).data(), | ||
MB_OK | messageIcon); | ||
|
||
ExitProcess(result); | ||
if (_logic.ShouldExitEarly()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like we're still covered in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So sure, we don't need it in this PR anymore. Originally I was only going to exit early if there were no subcommands specified after a Now, I'm thinking about using it in the future for |
||
{ | ||
ExitProcess(result); | ||
} | ||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yyyyaaaasssss