fix: Homepage: $url should point to homepage

Not the first $source
main
earnest ma 2021-10-08 10:28:02 -04:00
parent 78df941e99
commit dc4d6244ae
Signed by: earnest ma
GPG Key ID: A343F43342EB6E2A
1 changed files with 2 additions and 2 deletions

4
aptpkg
View File

@ -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