aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas C. Villa Real <lucasvr@gmail.com>2018-07-02 01:28:49 -0300
committerLucas C. Villa Real <lucasvr@gmail.com>2018-07-02 01:28:49 -0300
commitd3a1e908167b0665835058443a557c516afafcd1 (patch)
treeffd7992291b9e5dc5c579a4075c97749b7492b4d
parent1c2e90d9c6c9d5091ed024c6fc1bb1cb24b6b90c (diff)
downloadThirdPartyInstallers-d3a1e908167b0665835058443a557c516afafcd1.tar.xz
Filter packages based on the presence of "http*://", not on the hash token
-rwxr-xr-xbin/ThirdPartyInstaller2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ThirdPartyInstaller b/bin/ThirdPartyInstaller
index 4d87250..9c8c965 100755
--- a/bin/ThirdPartyInstaller
+++ b/bin/ThirdPartyInstaller
@@ -539,7 +539,7 @@ fi
if Boolean "install-dependencies"
then
install_cmd="$0 --symlink=$(Entry symlink) --install-dependencies"
- cat "$target/Resources/Dependencies" 2> /dev/null | grep "#" | while read line
+ cat "$target/Resources/Dependencies" 2> /dev/null | grep "http*://" | while read line
do
depname=$(echo "$line" | awk {'print $1'})
depurl=$(echo "$line" | awk {'print $3'})