From 6228a9310202a9bcdaae21cb356a159273df414f Mon Sep 17 00:00:00 2001 From: aabacchus Date: Fri, 12 Jan 2024 17:39:05 +0000 Subject: [PATCH] kiss: correct name of queue-status hook (#127) In the documentation at https://github.com/kisslinux/website/blob/master/site/wiki/package-manager.txt#L197, and in kiss itself at https://github.com/kisslinux/kiss/blob/master/kiss#L933, the hook executed for each package in the queue is named "queue-status", but the argument passed to the hook has been "queue". Some users may depend on this; either this or the documentation should be corrected to match the other. Reviewed-on: https://codeberg.org/kiss-community/kiss/pulls/127 Co-authored-by: aabacchus Co-committed-by: aabacchus --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 0fa8e9f..2fb114f 100755 --- a/kiss +++ b/kiss @@ -1045,7 +1045,7 @@ pkg_build_all() { # arg2: package name # arg3: number in queue # arg4: total in queue - run_hook queue "$pkg" "$_build_cur" "$#" + run_hook queue-status "$pkg" "$_build_cur" "$#" ! [ -f "$repo_dir/sources" ] || pkg_extract "$pkg"