We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6936fef commit 6b0bc82Copy full SHA for 6b0bc82
1 file changed
channels/releng/config.any
@@ -76,23 +76,12 @@ nochname=true
76
# List of packages required for build
77
# The following packages are checked to see if they are installed before running build.sh
78
# Also, wizard.sh will install it automatically.
79
-dependence=(
80
-# "alterlinux-keyring"
81
-# "archiso"
82
- "arch-install-scripts"
83
- "curl"
84
- "dosfstools"
85
- "edk2-shell"
86
- "git"
87
- "libburn"
88
- "libisofs"
89
- "lz4"
90
- "lzo"
91
- "make"
92
- "squashfs-tools"
93
- "libisoburn"
94
- # "lynx"
95
- "xz"
96
- "zlib"
97
- "zstd"
+readarray -t dependence < <(printf "%s\n" "${dependence[@]}" | grep -xv "alterlinux-keyring")
+
+# Modules to include
+# An array of module directory names to include.
+# This setting cannot be changed by an argument.
+modules=(
+ base
+ share
98
)
0 commit comments