summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-05-17 17:07:10 -0400
committerDavid P <megver83@parabola.nu>2018-05-17 17:07:10 -0400
commit923588d61f695c2f31552b97bc2447bc13521acd (patch)
treea763ba9fbafa0d487ebb4c0306226c075c9efa39
parent4b6bc5c0f017089bfb5a8cf61b3ad3d60b4b8532 (diff)
minor changes to find-deprecated-pkgs
Signed-off-by: David P <megver83@parabola.nu>
-rwxr-xr-xfind-deprecated-pkgs5
1 files changed, 2 insertions, 3 deletions
diff --git a/find-deprecated-pkgs b/find-deprecated-pkgs
index 35ebd56..a527d2c 100755
--- a/find-deprecated-pkgs
+++ b/find-deprecated-pkgs
@@ -20,8 +20,7 @@ repos_parabola="pcr pcr-multilib pcr-multilib-testing pcr-testing libre libre-mu
# Set the blacklist files
# aur-blacklist.txt is not here since we want to check Arch's official repos
blacklists="blacklist.txt"
-
-# List here file that may also blacklist Parabola packages
+# List here files that may also blacklist Parabola packages
blacklists_parabola="your-initfreedom-blacklist.txt your-privacy-blacklist.txt your-freedom_emu-blacklist.txt"
# Mirrors. Please choose HTTPS over HTTP when possible
@@ -116,6 +115,6 @@ check(){
if [ -s $1 ]; then
usage
else
- ping -q -w 1 -c 1 `ip r | grep ^default | awk '{print $3}'` &> /dev/null || err 'You are not connected to internet'
+ ping -q -w 1 -c 1 `ip r | grep ^default | awk '{print $3}'` &> /dev/null || err 'You must have internet connection to run this program'
check $1 || STATUS=$? usage
fi