diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-02-11 21:38:10 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-02-11 21:38:10 +0100 |
commit | c0b12523feb43a81dbf970054eb69b5c60626936 (patch) | |
tree | fd7110b6d57222bd736426437eae59d93f2a7480 /plugins | |
parent | ee86f1a627d805c5fd035172f29e866508d2f0bf (diff) | |
download | zsh-c0b12523feb43a81dbf970054eb69b5c60626936.tar.gz zsh-c0b12523feb43a81dbf970054eb69b5c60626936.tar.bz2 zsh-c0b12523feb43a81dbf970054eb69b5c60626936.zip |
Fix deprecated dnf commands
Update -> upgrade
Erase -> remove
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dnf/dnf.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dnf/dnf.plugin.zsh b/plugins/dnf/dnf.plugin.zsh index 9a6abef44..653ce7dda 100644 --- a/plugins/dnf/dnf.plugin.zsh +++ b/plugins/dnf/dnf.plugin.zsh @@ -7,9 +7,9 @@ alias dnfmc="dnf makecache" # Generate metadata cache alias dnfp="dnf info" # Show package information alias dnfs="dnf search" # Search package -alias dnfu="sudo dnf update" # Upgrade package +alias dnfu="sudo dnf upgrade" # Upgrade package alias dnfi="sudo dnf install" # Install package alias dnfgi="sudo dnf groupinstall" # Install package group -alias dnfr="sudo dnf erase" # Remove package +alias dnfr="sudo dnf remove" # Remove package alias dnfgr="sudo dnf groupremove" # Remove package group alias dnfc="sudo dnf clean all" # Clean cache |