From a0871a9e3560a7955e813e9fbf6b97c4ff6de30d Mon Sep 17 00:00:00 2001 From: awokd <34515595+awokd@users.noreply.github.com> Date: Tue, 27 Feb 2018 10:17:40 +0000 Subject: [PATCH] reinstal -> reinstall unless it's getting truncated somewhere along the way --- misc/qubes-download-dom0-updates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)