We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The --help command-line option is broken on the current Ubuntu build
brave-browser --help
The brave-browser script returns
No manual entry for brave
The manual entry for brave-browser(1) should show. The manual page exists
Always
Version 1.18.78 Chromium: 87.0.4280.141 (Official Build) (64-bit)
n/a
The text was updated successfully, but these errors were encountered:
This switch is handled in Chrome using this code and it essentially just calls "man".
I found that all of these work:
man brave-browser-stable man brave-browser-beta man brave-browser
but not:
man brave
After instrumenting the code, I confirmed that binary.BaseName().value() maps to brave and so that's why the manpage can't be found.
binary.BaseName().value()
brave
Sorry, something went wrong.
I found the root cause to be this customization we made in #4142 to the launcher/wrapper in order to work-around non-fatal crashes.
It might be possible to change the value of argv[0] without using exec -a in /opt/brave.com/brave/brave-browser:
argv[0]
exec -a
/opt/brave.com/brave/brave-browser
I am having the same problem but I don't understand how to fix it
No branches or pull requests
Description
The --help command-line option is broken on the current Ubuntu build
Steps to Reproduce
brave-browser --help
Actual result:
The brave-browser script returns
Expected result:
The manual entry for brave-browser(1) should show. The manual page exists
Reproduces how often:
Always
Brave version (brave://version info)
Version 1.18.78 Chromium: 87.0.4280.141 (Official Build) (64-bit)
Version/Channel Information:
Other Additional Information:
n/a
Miscellaneous Information:
n/a
The text was updated successfully, but these errors were encountered: