X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=webi%2Ftemplate.bash;h=b95c0501e2be6478cf75a692691f8f6198212748;hb=0e4ec7e16b40653451f35892e98a2ca4fbc10f8c;hp=8c42305ff9fdc953628fd431f1841e35c722a07f;hpb=fca1ef9dc61307236722e4292d5087cbf3e875ec;p=webi-installers%2F.git diff --git a/webi/template.bash b/webi/template.bash index 8c42305..b95c050 100644 --- a/webi/template.bash +++ b/webi/template.bash @@ -51,14 +51,16 @@ webi_download() { if [ -n "${2:-}" ]; then my_dl="$2" else - my_dl="$WEBI_PKG_FILE" + my_dl="$HOME/Downloads/$WEBI_PKG_FILE" fi if [ -n "$WEBI_WGET" ]; then # wget has resumable downloads - wget -c "$my_url" --user-agent="wget $WEBI_UA" -O "$my_dl" + # TODO wget -c --content-disposition "$my_url" + wget -q --show-progress -c "$my_url" --user-agent="wget $WEBI_UA" -O "$my_dl" else # BSD curl is non-resumable, hence we don't bother + # TODO curl -fsSL --remote-name --remote-header-name --write-out "$my_url" curl -fSL "$my_url" -H "User-Agent: curl $WEBI_UA" -o "$my_dl" fi } @@ -95,7 +97,8 @@ webi_path_add() { export PATH="$HOME/.local/bin:$PATH" fi - pathman add "$1" + # in case pathman was recently installed and the PATH not updated + "$HOME/.local/bin/pathman" add "$1" } ##