mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
e3aae45a6f
commit
d32f30ac48
2 changed files with 5 additions and 0 deletions
|
@ -325,6 +325,7 @@ ## General Options:
|
||||||
-h, --help Print this help text and exit
|
-h, --help Print this help text and exit
|
||||||
--version Print program version and exit
|
--version Print program version and exit
|
||||||
-U, --update Update this program to latest version
|
-U, --update Update this program to latest version
|
||||||
|
--no-update Do not update (default)
|
||||||
-i, --ignore-errors Ignore download and postprocessing errors.
|
-i, --ignore-errors Ignore download and postprocessing errors.
|
||||||
The download will be considered successful
|
The download will be considered successful
|
||||||
even if the postprocessing fails
|
even if the postprocessing fails
|
||||||
|
|
|
@ -312,6 +312,10 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs):
|
||||||
'-U', '--update',
|
'-U', '--update',
|
||||||
action='store_true', dest='update_self',
|
action='store_true', dest='update_self',
|
||||||
help='Update this program to latest version')
|
help='Update this program to latest version')
|
||||||
|
general.add_option(
|
||||||
|
'--no-update',
|
||||||
|
action='store_false', dest='update_self',
|
||||||
|
help='Do not update (default)')
|
||||||
general.add_option(
|
general.add_option(
|
||||||
'-i', '--ignore-errors',
|
'-i', '--ignore-errors',
|
||||||
action='store_true', dest='ignoreerrors',
|
action='store_true', dest='ignoreerrors',
|
||||||
|
|
Loading…
Reference in a new issue