summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck-non-free8
1 files changed, 2 insertions, 6 deletions
diff --git a/check-non-free b/check-non-free
index 3264b35..f070e65 100755
--- a/check-non-free
+++ b/check-non-free
@@ -41,15 +41,11 @@ wget http://www.parabolagnulinux.org/docs/blacklist.txt 2>/dev/null || {
a=($(cut -d: -f1 blacklist.txt))
-source dir/PKGBUILD
-
-echo ""
-b[0]=""
-
for i in ${a[@]} ; do
pacman -Q $i >/dev/null 2>/dev/null && b[${#b[@]}]=$i
done
-
+echo "This proprietary software found on your system:"
+echo ""
for i in $(seq 0 ${#b[@]}) ; do
echo ${b[$i]}
done