From d3a1e908167b0665835058443a557c516afafcd1 Mon Sep 17 00:00:00 2001 From: "Lucas C. Villa Real" Date: Mon, 2 Jul 2018 01:28:49 -0300 Subject: Filter packages based on the presence of "http*://", not on the hash token --- bin/ThirdPartyInstaller | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'}) -- cgit v1.1