--with option of sub-command now accepts lists of modules

This commit is contained in:
2019-05-22 11:21:41 +02:00
parent 54eeae4df3
commit 21beab1a78
+5 -1
View File
@@ -1572,7 +1572,11 @@ subcommand_search() {
std::die 1 "%s %s: illegal value for --with option -- %s\n" \
"${CMD}" 'search' "${arg}"
fi
with_modules+=" && / ${arg//\//\\/}/"
arg=${arg//:/ }
arg=${arg//,/ }
for module in ${arg}; do
with_modules+=" && / ${module//\//\\/}/"
done
;;
-a | --all-releases )
opt_use_releases="${PMODULES_DEFINED_RELEASES}"