From 609938cbec74c58112bfa524d0e3db3bf8c4c177 Mon Sep 17 00:00:00 2001 From: kokkiemouse Date: Fri, 20 Nov 2020 20:42:59 +0900 Subject: [PATCH] fixed option Signed-off-by: kokkiemouse --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 6391db9..2a8656e 100755 --- a/build.sh +++ b/build.sh @@ -347,7 +347,7 @@ make_repo_packages() { echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${work_dir}/packages.list" # Install packages on airootfs mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache" - run_cmd dnf -y --nogpgcheck -c /dnf_conf install "${_pkglist[*]}" + run_cmd dnf -y --nogpgcheck -c /dnf_conf install ${_pkglist[*]} } make_dnf_packages() { @@ -361,7 +361,7 @@ make_dnf_packages() { # Install packages on airootfs mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache" - run_cmd dnf -y --nogpgcheck -c /dnf_conf install "${_pkglist[*]}" + run_cmd dnf -y --nogpgcheck -c /dnf_conf install ${_pkglist[*]} } make_cp_airootfs() { -- 2.11.0