Skip to content
Snippets Groups Projects
Commit 973a7436 authored by Bensong Liu's avatar Bensong Liu
Browse files

bug fix

parent cf0934e1
No related branches found
No related tags found
No related merge requests found
...@@ -52,11 +52,11 @@ function get_package_list_with_filter () { ...@@ -52,11 +52,11 @@ function get_package_list_with_filter () {
# NO input, NO arg. Result outputs to stdout, seprated by '\n' # NO input, NO arg. Result outputs to stdout, seprated by '\n'
list=`get_package_list` || return $? list=`get_package_list` || return $?
while read -r blacklist; do for blentry in "${aurpar_config_package_blacklist[@]}"; do
list=`echo "$list" | grep -vE "^(aur/)?$blacklist$"` list=`echo "$list" | grep -vE "^(aur/)?$blentry$"`
done <<< "$aurpar_config_package_blacklist" done
echo $list echo "$list"
return $? return $?
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment