Hi,

 I'll revert below your commit since this regression fix also solve it.

> commit c1c20ed48e83fe9d4f3512c524f7734d4e1469ac
> Author: Raphaƫl Hertzog <hert...@debian.org>
> Date:   Thu Apr 12 12:18:29 2018 +0200
> 
>     Do not use HTTPS for Kali bootstrap script


 Please let me know if you don't want it.


On Sat, 21 Apr 2018 20:32:59 +0900
Hideki Yamane <henr...@iijmio-mail.jp> wrote:
> > there was a change in behaviour with the latest upload:
> 
>  Thanks for the report, and here's a proposal fix.
>  "$@" is extracted as '' and wget tries to fetch it and fails, 
>  then returns 1.
> 
> 
> diff --git a/functions b/functions
> index 1e41862..bad37dc 100644
> --- a/functions
> +++ b/functions
> @@ -80,10 +80,10 @@ wgetprogress () {
>         [ ! "$VERBOSE" ] && NVSWITCH="-nv"
>         local ret=0
>         if [ "$USE_DEBIANINSTALLER_INTERACTION" ] && [ "$PROGRESS_NEXT" ]; 
> then
> -               wget "$@" 2>&1 >/dev/null | "$PKGDETAILS" "WGET%" 
> "$PROGRESS_NOW" "$PROGRESS_NEXT" "$PROGRESS_END" >&3
> +               wget $@ 2>&1 >/dev/null | "$PKGDETAILS" "WGET%" 
> "$PROGRESS_NOW" "$PROGRESS_NEXT" "$PROGRESS_END" >&3
>                 ret=$?
>         else
> -               wget $NVSWITCH "$@"
> +               wget $NVSWITCH $@
>                 ret=$?
>         fi
>         return $ret


-- 
Regards,

 Hideki Yamane     henrich @ debian.org/iijmio-mail.jp

Reply via email to