Fixes for linux (#273)

* Use prebuilt OpenVPN binary for Linux
This commit is contained in:
pokamest 2023-08-08 08:16:47 -07:00 committed by GitHub
parent 520aaac31f
commit 508356898f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -219,7 +219,7 @@ QString Utils::openVpnExecPath()
#ifdef Q_OS_WIN
return Utils::executable("openvpn/openvpn", true);
#elif defined Q_OS_LINUX
return Utils::usrExecutable("openvpn");
return Utils::executable("openvpn", true);
#else
return Utils::executable("/openvpn", true);
#endif