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
Hello Alicia,
Another issue on the script start file because your release bin have been changed and I explain : You reference you script here for Linux if we take the latest version : https://github.com/Lissy93/AdGuardian-Term/releases/download/1.6.0/adguardian-linux But It don't exist anymore ;)
This is your script :
print_heading "Checking system type" if [[ "$OSTYPE" == "linux-gnu"* ]]; then print_info "System type: Linux" bin_target="adguardian-linux" elif [[ "$OSTYPE" == "darwin"* ]]; then print_info "System type: Apple OS X" bin_target="adguardian-macos" elif [[ "$OSTYPE" == "cygwin" ]]; then print_info "System type: Windows/Cygwin" bin_target="adguardian-windows.exe" else exit_script "Unsupported System" fi
But this it is waht exist :
And as well the adguardian-x86_64 is not managed either. In Raspi or any Linux version all installation failded.
Thanks again and great day.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello Alicia,
Another issue on the script start file because your release bin have been changed and I explain :
You reference you script here for Linux if we take the latest version :
https://github.com/Lissy93/AdGuardian-Term/releases/download/1.6.0/adguardian-linux But It don't exist anymore ;)
This is your script :
Check what system the user is running
print_heading "Checking system type"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
print_info "System type: Linux"
bin_target="adguardian-linux"
elif [[ "$OSTYPE" == "darwin"* ]]; then
print_info "System type: Apple OS X"
bin_target="adguardian-macos"
elif [[ "$OSTYPE" == "cygwin" ]]; then
print_info "System type: Windows/Cygwin"
bin_target="adguardian-windows.exe"
else
exit_script "Unsupported System"
fi
But this it is waht exist :
And as well the adguardian-x86_64 is not managed either.
In Raspi or any Linux version all installation failded.
Thanks again and great day.
The text was updated successfully, but these errors were encountered: