diff options
Diffstat (limited to 'talpid_cli/src/cli.rs')
| -rw-r--r-- | talpid_cli/src/cli.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/talpid_cli/src/cli.rs b/talpid_cli/src/cli.rs index 765180379a..79a13d94c2 100644 --- a/talpid_cli/src/cli.rs +++ b/talpid_cli/src/cli.rs @@ -4,11 +4,11 @@ use std::path::PathBuf; use talpid_core::net::RemoteAddr; #[cfg(all(unix, not(target_os="macos")))] -static DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.so"; +const DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.so"; #[cfg(target_os="macos")] -static DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.dylib"; +const DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.dylib"; #[cfg(windows)] -static DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.dll"; +const DEFAULT_PLUGIN_PATH: &'static str = "./target/debug/libtalpid_openvpn_plugin.dll"; pub struct Args { |
