diff --git a/misc/qubes-download-dom0-updates.sh b/misc/qubes-download-dom0-updates.sh index b720715..d5a36c4 100755 --- a/misc/qubes-download-dom0-updates.sh +++ b/misc/qubes-download-dom0-updates.sh @@ -126,7 +126,7 @@ if ! $YUM --help | grep -q downloadonly; then elif [ "$YUM_ACTION" == "list" ] || [ "$YUM_ACTION" == "search" ]; then # those actions do not download any package, so lack of --downloadonly is irrelevant YUM_COMMAND="$YUM $YUM_ACTION -y" - elif [ "$YUM_ACTION" == "reinstal" ]; then + elif [ "$YUM_ACTION" == "reinstall" ]; then # this is just approximation of 'reinstall' action... # shellcheck disable=SC2086 PKGLIST=$(rpm --root=$DOM0_UPDATES_DIR -q $PKGLIST)