Merge pull request #61 from qi777xj/master

Make aria2 use the absolute path
This commit is contained in:
Owen Rafferty 2022-08-11 14:14:03 -05:00 committed by GitHub
commit 2e7e04a537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

7
kiss
View File

@ -431,9 +431,10 @@ pkg_source_url() {
# Set the arguments based on found download utility.
case ${cmd_get##*/} in
aria2c|axel) set -- -o "$@" ;;
curl) set -- -fLo "$@" ;;
wget|wget2) set -- -O "$@" ;;
aria2c) set -- -d / -o "$@" ;;
axel) set -- -o "$@" ;;
curl) set -- -fLo "$@" ;;
wget|wget2) set -- -O "$@" ;;
esac
"$cmd_get" "$@" || {