summaryrefslogtreecommitdiff
path: root/db-check-nonfree
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-20 18:14:35 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-20 18:14:35 -0500
commitde9f3bae65a3c488a11a998fa177921ed4cab339 (patch)
tree3c7c13b8e7335c533b3f9ff4ba96c2cf37f06a11 /db-check-nonfree
parent973daf0b56132ff451913fc127521ab5fcd5d033 (diff)
Fix: `libreblacklist get-pkg` requires the full blacklist on stdin.
Diffstat (limited to 'db-check-nonfree')
-rwxr-xr-xdb-check-nonfree2
1 files changed, 1 insertions, 1 deletions
diff --git a/db-check-nonfree b/db-check-nonfree
index dd69501..7cbeb8f 100755
--- a/db-check-nonfree
+++ b/db-check-nonfree
@@ -17,7 +17,7 @@ done
msg "Check nonfree in repo:"
libreblacklist update
-nonfree=($(libreblacklist get-pkg | sort -u))
+nonfree=($(libreblacklist cat | libreblacklist get-pkg | sort -u))
for repo in "${ARCHREPOS[@]}"; do
for pkgarch in "${ARCHES[@]}"; do
msg2 "%s %s" "$repo" "$pkgarch"