Skip to content

Commit 393b1e2

Browse files
committed
[disable] : Disabled package check
1 parent e29d487 commit 393b1e2

1 file changed

Lines changed: 13 additions & 14 deletions

File tree

build.sh

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -554,21 +554,20 @@ make_basefs() {
554554
# Additional packages (airootfs)
555555
make_packages_repo() {
556556
msg_debug "pkglist.sh ${pkglist_args[*]}"
557-
readarray -t _pkglist < <("${tools_dir}/pkglist.sh" "${pkglist_args[@]}")
558557

559-
#pacman -Sy --config "${build_pacman_conf}"
560-
readarray -t repopkgs < <(pacman-conf -c "${build_pacman_conf}" -l | xargs -I{} pacman -Sql --config "${build_pacman_conf}" --color=never {} && pacman -Sg)
561-
562-
local _pkg
563-
for _pkg in "${_pkglist[@]}"; do
564-
msg_info "Checking ${_pkg}..."
565-
if printf "%s\n" "${repopkgs[@]}" | grep -qx "${_pkg}"; then
566-
_pkglist_install+=("${_pkg}")
567-
else
568-
msg_info "${_pkg} was not found. Install it with yay from AUR"
569-
norepopkg+=("${_pkg}")
570-
fi
571-
done
558+
# Package check
559+
#readarray -t _pkglist < <("${tools_dir}/pkglist.sh" "${pkglist_args[@]}")
560+
#readarray -t repopkgs < <(pacman-conf -c "${build_pacman_conf}" -l | xargs -I{} pacman -Sql --config "${build_pacman_conf}" --color=never {} && pacman -Sg)
561+
#local _pkg
562+
#for _pkg in "${_pkglist[@]}"; do
563+
# msg_info "Checking ${_pkg}..."
564+
# if printf "%s\n" "${repopkgs[@]}" | grep -qx "${_pkg}"; then
565+
# _pkglist_install+=("${_pkg}")
566+
# else
567+
# msg_info "${_pkg} was not found. Install it with yay from AUR"
568+
# norepopkg+=("${_pkg}")
569+
# fi
570+
#done
572571

573572
# Create a list of packages to be finally installed as packages.list directly under the working directory.
574573
echo -e "# The list of packages that is installed in live cd.\n#\n" > "${build_dir}/packages.list"

0 commit comments

Comments
 (0)