diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-29 20:33:01 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-09 01:08:48 +0530 |
commit | 70b2340909d8d917f71d20181614fd7392d3f7f0 (patch) | |
tree | 9836125a25c94260c99040cb4d73f302257bd924 /devscripts/make_readme.py | |
parent | 115add43876964956917bf596c1d0b148c5b3c26 (diff) | |
download | hypervideo-pre-70b2340909d8d917f71d20181614fd7392d3f7f0.tar.lz hypervideo-pre-70b2340909d8d917f71d20181614fd7392d3f7f0.tar.xz hypervideo-pre-70b2340909d8d917f71d20181614fd7392d3f7f0.zip |
[build, devscripts] Add devscript to set a build variant
Closes #4471
Diffstat (limited to 'devscripts/make_readme.py')
-rwxr-xr-x | devscripts/make_readme.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devscripts/make_readme.py b/devscripts/make_readme.py index 767ea5409..fad993a19 100755 --- a/devscripts/make_readme.py +++ b/devscripts/make_readme.py @@ -45,6 +45,10 @@ switch_col_width = len(re.search(r'(?m)^\s{5,}', options).group()) delim = f'\n{" " * switch_col_width}' PATCHES = ( + ( # Standardize update message + r'(?m)^( -U, --update\s+).+(\n \s.+)*$', + r'\1Update this program to the latest version', + ), ( # Headings r'(?m)^ (\w.+\n)( (?=\w))?', r'## \1' |