mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-20 01:28:56 +00:00
* apt_list_upgradable: Prepend sudo to suggestion if used in command * Add apt_upgrade rule This suggests `apt upgrade` after `apt list --upgradable` if there are packages to upgrade. It pairs well with the `apt_list_upgradable` rule, which suggests `apt list --upgradable` after `apt update` if there are packages to upgrade. * Add apt_upgrade rule to README
17 lines
388 B
Python
17 lines
388 B
Python
from thefuck.specific.apt import apt_available
|
|
from thefuck.specific.sudo import sudo_support
|
|
from thefuck.utils import for_app
|
|
|
|
enabled_by_default = apt_available
|
|
|
|
|
|
@sudo_support
|
|
@for_app('apt')
|
|
def match(command):
|
|
return command.script == "apt list --upgradable" and len(command.output.strip().split('\n')) > 1
|
|
|
|
|
|
@sudo_support
|
|
def get_new_command(command):
|
|
return 'apt upgrade'
|