deb-update.bash: fix deprecated dnf alias

The manual page says "dnf update" is deprecated alias, current alias
would be "dnf up", but I guess in script using the actual command
"upgrade" is the best option.
This commit is contained in:
Aminda Suomalainen 2021-01-24 21:33:09 +02:00
parent ae98abde05
commit 2321006e01
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ fi
if hash dnf 2>/dev/null; then
# If arguments like -y are passed to the script, they become "$@"
dnf "$@" update
dnf "$@" upgrade
fi
if hash flatpak 2>/dev/null; then