We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae7623 commit 4217fa9Copy full SHA for 4217fa9
1 file changed
build.sh
@@ -422,13 +422,14 @@ prepare_build() {
422
# Legacy mode
423
if [[ "$(bash "${tools_dir}/channel.sh" --version "${alteriso_version}" ver "${channel_name}")" = "3.0" ]]; then
424
msg_warn "The module cannot be used because it works with Alter ISO3.0 compatibility."
425
- if [[ -n "${include_extra+SET}" ]]; then
426
- if [[ "${include_extra}" = true ]]; then
+ case "${include_extra-"unset"}" in
+ "true")
427
modules=("base" "share" "share-extra" "gtk-tools" "pamac" "calamares" "zsh-powerline")
428
- else
+ ;;
429
+ "false" | "unset")
430
modules=("base" "share")
- fi
431
432
+ esac
433
fi
434
435
local module_check
0 commit comments