We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9294746 commit 47d084dCopy full SHA for 47d084d
1 file changed
tools/pkglist.sh
@@ -130,7 +130,13 @@ while true; do
130
esac
131
done
132
133
-modules=("${@}")
+for module in "${@}"; do
134
+ if "${script_path}/tools/module.sh" check "${module}"; then
135
+ modules=("${@}")
136
+ else
137
+ msg_debug "Module ${module} was not found"
138
+ fi
139
+done
140
141
if [[ -z "${arch}" ]] || [[ "${arch}" = "" ]]; then
142
msg_error "Architecture not specified"
0 commit comments