Skip to content
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

fix help message for --http-headers-fields-urlpat configuration option #4594

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions easybuild/tools/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,11 +438,11 @@ def override_options(self):
"(e.g. --hide-deps=zlib,ncurses)", 'strlist', 'extend', None),
'hide-toolchains': ("Comma separated list of toolchains that you want automatically hidden, "
"(e.g. --hide-toolchains=GCCcore)", 'strlist', 'extend', None),
'http-header-fields-urlpat': ("Set extra HTTP header FIELDs when downloading files from URL PATterns. "
"To not log sensitive values, specify a file containing newline separated "
"FIELDs. e.g. \"^https://www.example.com::/path/to/headers.txt\" or "
"\"client[A-z0-9]*.example.com': ['Authorization: Basic token']\".",
None, 'append', None, {'metavar': '[URLPAT::][HEADER:]FILE|FIELD'}),
'http-header-fields-urlpat': ("Set extra HTTP header FIELD when downloading files from URL PATterns. "
"Use FILE (to hide sensitive values) and newline separated FIELDs in the "
"same format. e.g. \"^https://www.example.com::path/to/headers.txt\" or "
"\"client[A-z0-9]*.example.com:: Authorization: Basic token\".",
None, 'append', None, {'metavar': '[URLPAT::][HEADER:]FIELDVALUE|FILE'}),
'ignore-checksums': ("Ignore failing checksum verification", None, 'store_true', False),
'ignore-test-failure': ("Ignore a failing test step", None, 'store_true', False),
'ignore-osdeps': ("Ignore any listed OS dependencies", None, 'store_true', False),
Expand Down
Loading