Skip to content

Commit 6c30337

Browse files
committed
[fix] : Fixed SC2086
1 parent 70e8cbb commit 6c30337

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/pkglist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ for _file in "${_loadfilelist[@]}"; do
193193
if [[ -f "${_file}" ]]; then
194194
msg_debug "Loaded package file ${_file}"
195195
#_pkglist=( ${_pkglist[@]} "$(grep -h -v ^'#' ${_file})" )
196-
readarray -t -O "${#_pkglist[@]}" < <(grep -h -v ^'#' ${_file})
196+
readarray -t -O "${#_pkglist[@]}" < <(grep -h -v ^'#' "${_file}")
197197
else
198198
msg_debug "The file was not found ${_file}"
199199
fi

0 commit comments

Comments
 (0)