We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e8cbb commit 6c30337Copy full SHA for 6c30337
1 file changed
tools/pkglist.sh
@@ -193,7 +193,7 @@ for _file in "${_loadfilelist[@]}"; do
193
if [[ -f "${_file}" ]]; then
194
msg_debug "Loaded package file ${_file}"
195
#_pkglist=( ${_pkglist[@]} "$(grep -h -v ^'#' ${_file})" )
196
- readarray -t -O "${#_pkglist[@]}" < <(grep -h -v ^'#' ${_file})
+ readarray -t -O "${#_pkglist[@]}" < <(grep -h -v ^'#' "${_file}")
197
else
198
msg_debug "The file was not found ${_file}"
199
fi
0 commit comments