From a260d5c7b5acc6c23099e22f21d9e4e76e5ed4e9 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 5 Oct 2023 18:35:17 +0200 Subject: [PATCH] fix: lib name for darwin --- runner/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}");