diff --git a/runner/src/main.rs b/runner/src/main.rs index df6d0c6..8e2d0ed 100644 --- a/runner/src/main.rs +++ b/runner/src/main.rs @@ -5,7 +5,7 @@ const LIB_FILE: &str = "libvpnym.so"; #[cfg(target_os = "windows")] const LIB_FILE: &str = "vpnym.dll"; #[cfg(target_os = "macos")] -const LIB_FILE: &str = "vpnym.dylib"; +const LIB_FILE: &str = "libvpnym.dylib"; fn call_dynamic() -> Result<(), Box> { let lib_path = format!("lib/{LIB_FILE}");