From 68bca91e114146000117e1e7fa523fdd56e02146 Mon Sep 17 00:00:00 2001 From: Lucio Andrés Illanes Albornoz Date: Feb 15 2020 10:23:03 +0000 Subject: subr/ex_pkg_dispatch.subr:exp_pkg_dispatch_{group,package}(): correctly register {disabled,skipped} packages in ${_pkgs_found}. --- diff --git a/subr/ex_pkg_dispatch.subr b/subr/ex_pkg_dispatch.subr index 399b860..a013156 100644 --- a/subr/ex_pkg_dispatch.subr +++ b/subr/ex_pkg_dispatch.subr @@ -35,6 +35,7 @@ exp_pkg_dispatch_group() { _pkgs_found_new="${_pkgs_found_new:+${_pkgs_found_new} }${_pkg_name}"; break; elif [ "${_pkg_skipfl:-0}" -eq 1 ]; then + _pkgs_found_new="${_pkgs_found_new:+${_pkgs_found_new} }${_pkg_name}"; continue; fi; done;