mirror of
https://github.com/httpie/cli.git
synced 2024-11-24 08:22:22 +02:00
003f2095d4
* Hide pretty help * Automatic release update warnings. * `httpie cli check-updates` * adapt to the new loglevel construct * Don't make the pie-colors the bold * Apply review feedback. Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
11 lines
362 B
Python
11 lines
362 B
Python
import argparse
|
|
from httpie.context import Environment
|
|
from httpie.status import ExitStatus
|
|
from httpie.internal.update_warnings import fetch_updates, get_update_status
|
|
|
|
|
|
def cli_check_updates(env: Environment, args: argparse.Namespace) -> ExitStatus:
|
|
fetch_updates(env, lazy=False)
|
|
env.stdout.write(get_update_status(env))
|
|
return ExitStatus.SUCCESS
|