We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I needed to edit this script as follows before it would download correctly:
diff --git a/fetch-latest-widevine.sh b/fetch-latest-widevine.sh index 5d31ffe..99c2c25 100755 --- a/fetch-latest-widevine.sh +++ b/fetch-latest-widevine.sh @@ -14,8 +14,11 @@ esac # Detect wget/curl DLTOOL="" -which wget && DLTOOL="wget -O -" -which curl && DLTOOL="curl -L" +if which wget; then + DLTOOL="wget -O -" +elif which curl; then + DLTOOL="curl --remote-name -L" +fi [[ -z ${DLTOOL} ]] && echo "No download tool found on this system" 1>&2 && exit 1 # Begin download
I must assume that most people are using wget, and do not have curl installed on their systems.
wget
curl
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I needed to edit this script as follows before it would download correctly:
I must assume that most people are using
wget
, and do not havecurl
installed on their systems.The text was updated successfully, but these errors were encountered: