We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c8084 commit 4983f11Copy full SHA for 4983f11
1 file changed
tools/pkglist.sh
@@ -232,9 +232,11 @@ done
232
unset _subpkglist
233
234
#-- excludeされたパッケージを表示 --#
235
-if [[ -n "${_excludelist[*]}" ]]; then
+if (( "${#_excludelist[@]}" >= 1 )); then
236
msg_debug "The following packages have been removed from the installation list."
237
msg_debug "Excluded packages: ${_excludelist[*]}"
238
+else
239
+ msg_debug "No packages are excluded."
240
fi
241
242
# Sort the list of packages in abc order.
0 commit comments