Skip to content

Commit 2060f1e

Browse files
fixed ply
Signed-off-by: kokkiemouse <[email protected]>
1 parent cf7ecd2 commit 2060f1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ make_systemd() {
342342
run_cmd ln -sf /etc/machine-id /var/lib/dbus/machine-id
343343
}
344344
make_repo_packages() {
345-
local _pkg _pkglist=($("${script_path}/tools/pkglist-repo.sh" -a "x86_64" -c "${channels_dir}/${channel_name}" -k "${codename}" -l "${locale_name}" $(if [[ "${boot_splash}" = true ]]; then echo -n "-b"; fi) ))
345+
local _pkg _pkglist=($("${script_path}/tools/pkglist-repo.sh" -a "x86_64" -c "${channels_dir}/${channel_name}" -k "${codename}" -l "${locale_name}" $(if [[ "${bootsplash}" = true ]]; then echo -n "-b"; fi) ))
346346
# Create a list of packages to be finally installed as packages.list directly under the working directory.
347347
echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${work_dir}/packages.list"
348348
# Install packages on airootfs
@@ -352,7 +352,7 @@ make_repo_packages() {
352352
make_dnf_packages() {
353353

354354
#local _pkg _pkglist=($("${script_path}/tools/pkglist.sh" -a "x86_64" -k "${kernel}" -c "${channel_dir}" -l "${locale_name}" $(if [[ "${boot_splash}" = true ]]; then echo -n "-b"; fi) ))
355-
local _pkg _pkglist=($("${script_path}/tools/pkglist.sh" -a "x86_64" -c "${channels_dir}/${channel_name}" -l "${locale_name}" $(if [[ "${boot_splash}" = true ]]; then echo -n "-b"; fi) ))
355+
local _pkg _pkglist=($("${script_path}/tools/pkglist.sh" -a "x86_64" -c "${channels_dir}/${channel_name}" -l "${locale_name}" $(if [[ "${bootsplash}" = true ]]; then echo -n "-b"; fi) ))
356356
# Create a list of packages to be finally installed as packages.list directly under the working directory.
357357
echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${work_dir}/packages.list"
358358
for _pkg in ${_pkglist[@]}; do

0 commit comments

Comments
 (0)