Add --no-http-keep-alive to wget's arguments
When downloading SDRPlay API from sdrplay.com'server, it reports 403 forbidden error when the environment variable https_proxy is set. Adding --no-http-keep-live argument to wget will make the download working.
This commit is contained in:
parent
cb5b2e64af
commit
e8ba61bb81
@ -38,7 +38,7 @@ case $ARCH in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
wget https://www.sdrplay.com/software/$BINARY
|
wget --no-http-keep-alive https://www.sdrplay.com/software/$BINARY
|
||||||
sh $BINARY --noexec --target sdrplay
|
sh $BINARY --noexec --target sdrplay
|
||||||
patch --verbose -Np0 < /install-lib.$ARCH.patch
|
patch --verbose -Np0 < /install-lib.$ARCH.patch
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user