From c2fbc4193f87efdd3700cb364b1f4c4608fc3cbf Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 12 Jul 2021 12:44:27 +0300 Subject: [PATCH] misc: rename updates -> update --- kiss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiss b/kiss index 84312cd..11c6b83 100755 --- a/kiss +++ b/kiss @@ -1395,7 +1395,7 @@ pkg_install() { log "$pkg_name" "Installed successfully" } -pkg_updates() { +pkg_update() { # Check all installed packages for updates. So long as the installed # version and the version in the repositories differ, it's considered # an update. @@ -1636,7 +1636,7 @@ args() { l|list) pkg_list "$@" ;; r|remove) for pkg in $redro; do pkg_remove "$pkg"; done ;; s|search) for pkg do pkg_find_die "$pkg" all; done ;; - u|update) pkg_updates ;; + u|update) pkg_update ;; v|version) printf '5.4.11\n' ;; '')