diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/packagelists.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/packagelists.sh b/functions/packagelists.sh index d5a2a8c6d..deee6ddb4 100755 --- a/functions/packagelists.sh +++ b/functions/packagelists.sh @@ -37,7 +37,7 @@ Expand_packagelist () continue fi - while read _LB_LINE + printf "$(cat ${_LB_LIST_LOCATION})\n" | while read _LB_LINE do case "${_LB_LINE}" in \!*) @@ -115,6 +115,6 @@ Expand_packagelist () ;; esac - done < "${_LB_LIST_LOCATION}" + done done } |