From dc4d6244aecc1456fe5f398e269ce485f8b6903c Mon Sep 17 00:00:00 2001 From: earnest ma Date: Fri, 8 Oct 2021 10:28:02 -0400 Subject: [PATCH] fix: Homepage: $url should point to homepage Not the first $source --- aptpkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aptpkg b/aptpkg index b859abe..588bc83 100755 --- a/aptpkg +++ b/aptpkg @@ -80,9 +80,9 @@ build_file(){ cd "$1" || error_usage_die "Problem with changing directory" mkdir -p "$builddir" - for url in $source; do + for urls in $source; do echo "Getting $source" - wget -q "$url" + wget -q "$urls" done verify