mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-23 03:39:23 +01:00
deb-update.bash: add dnf check-update
This commit is contained in:
parent
69d02dda9a
commit
231ccb8280
@ -20,6 +20,11 @@ if hash apt-get 2>/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if hash dnf 2>/dev/null; then
|
if hash dnf 2>/dev/null; then
|
||||||
|
# I don't know if -y does anything here either and I think this may be
|
||||||
|
# useless, but I am used to it coming from apt and I think it will just
|
||||||
|
# say nothing to do or do nothing if mirrors haven't updated.
|
||||||
|
dnf check-update -y
|
||||||
|
|
||||||
# If arguments like -y are passed to the script, they become "$@"
|
# If arguments like -y are passed to the script, they become "$@"
|
||||||
dnf "$@" upgrade
|
dnf "$@" upgrade
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user