Skip to content

Commit

Permalink
download files using aria2|curl|wget
Browse files Browse the repository at this point in the history
  • Loading branch information
Gictorbit committed Jan 9, 2021
1 parent 1b2b0db commit 4396ae6
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions scripts/sharedFuncs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,20 @@ function download_component() {
fi
else
show_message "downloading $4 ..."
pkgres=$(package_installed aria2c "summary")
if [ "$pkgres" == "true" ];then
ariapkg=$(package_installed aria2c "summary")
curlpkg=$(package_installed curl "summary")

if [ "$ariapkg" == "true" ];then
show_message "using aria2c to download $4"
aria2c -c -x 8 -d "$CACHE_PATH" -o $4 $3

if [ $? -eq 0 ];then
notify-send "Photoshop CC" "$4 download completed" -i "download"
fi

elif [ "$curlpkg" == "true" ];then
show_message "using curl to download $4"
curl $3 -o $1
else
show_message "using wget to download $4"
wget "$3" -P "$CACHE_PATH"
Expand All @@ -198,7 +204,7 @@ function download_component() {
fi
((tout++))
fi
done
done
}

function rmdir_if_exist() {
Expand Down

0 comments on commit 4396ae6

Please sign in to comment.