Browse Source

reinstal -> reinstall

unless it's getting truncated somewhere along the way
awokd 6 years ago
parent
commit
a0871a9e35
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misc/qubes-download-dom0-updates.sh

+ 1 - 1
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)