Skip to content

Commit 86d458b

Browse files
committed
[fix] : Package list format
1 parent 7206baa commit 86d458b

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
@@ -581,7 +581,7 @@ make_packages_repo() {
581581
local _pkglist=($("${tools_dir}/pkglist.sh" "${pkglist_args[@]}"))
582582

583583
# Create a list of packages to be finally installed as packages.list directly under the working directory.
584-
echo -e "# The list of packages that is installed in live cd.\n#\n\n" > "${build_dir}/packages.list"
584+
echo -e "# The list of packages that is installed in live cd.\n#\n" > "${build_dir}/packages.list"
585585
printf "%s\n" "${_pkglist[@]}" >> "${build_dir}/packages.list"
586586

587587
# Install packages on airootfs
@@ -595,7 +595,7 @@ make_packages_aur() {
595595
local _pkglist_aur=($("${tools_dir}/pkglist.sh" --aur "${pkglist_args[@]}"))
596596

597597
# Create a list of packages to be finally installed as packages.list directly under the working directory.
598-
echo -e "\n\n# AUR packages.\n#\n\n" >> "${build_dir}/packages.list"
598+
echo -e "\n# AUR packages.\n#\n" >> "${build_dir}/packages.list"
599599
printf "%s\n" "${_pkglist_aur[@]}" >> "${build_dir}/packages.list"
600600

601601
# prepare for yay

0 commit comments

Comments
 (0)