We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b435882 commit 75f1ebbCopy full SHA for 75f1ebb
2 files changed
build.sh
@@ -370,6 +370,12 @@ prepare_build() {
370
modules=("${_modules[@]}")
371
unset _modules
372
373
+ # Ignore modules
374
+ local _m
375
+ for _m in "${exclude_modules[@]}"; do
376
+ readarray -t modules < <(printf "%s\n" "${modules[@]}" | grep -xv "${_m}")
377
+ done
378
+
379
# Check modules
380
module_check(){
381
msg_debug -n "Checking ${1} module ... "
default.conf
@@ -306,6 +306,10 @@ additional_exclude_pkg=()
306
# This array is not available in the configuration files in the channel.
307
additional_modules=()
308
309
310
+# Module list
311
+exclude_modules=()
312
313
# Run with tee command
314
# Set to "false" to disable logging
315
# If not false, the log will be saved in the specified path.
0 commit comments