-
Notifications
You must be signed in to change notification settings - Fork 71
Description
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
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.
