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

@ -1 +1 @@
Subproject commit f339911dcb75d8a199e508cc2c2f32851cf211b8
Subproject commit 75e352b40ede4324248b7594b70dbdaa1a7a7f41

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