From 2060f1ea21b93b9284c83c8d4aa929fafe9d1592 Mon Sep 17 00:00:00 2001 From: kokkiemouse Date: Fri, 20 Nov 2020 21:04:18 +0900 Subject: [PATCH] fixed ply Signed-off-by: kokkiemouse --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index fb442de..11ac1f7 100755 --- a/build.sh +++ b/build.sh @@ -342,7 +342,7 @@ make_systemd() { run_cmd ln -sf /etc/machine-id /var/lib/dbus/machine-id } make_repo_packages() { - 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) )) + 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) )) # Create a list of packages to be finally installed as packages.list directly under the working directory. echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${work_dir}/packages.list" # Install packages on airootfs @@ -352,7 +352,7 @@ make_repo_packages() { make_dnf_packages() { #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) )) - 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) )) + 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) )) # Create a list of packages to be finally installed as packages.list directly under the working directory. echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${work_dir}/packages.list" for _pkg in ${_pkglist[@]}; do -- 2.11.0