Skip to content

Commit

Permalink
Merge pull request #4594 from Louwrensth/fix_help_msg_http_headers
Browse files Browse the repository at this point in the history
fix help message for `--http-headers-fields-urlpat` configuration option
  • Loading branch information
boegel authored Aug 27, 2024
2 parents fe6469e + 8e18776 commit 1a26053
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 1a26053

Please sign in to comment.