Skip to content

Commit 4b239e4

Browse files
committed
chore: move dyn libs to libs folder@
1 parent be6c971 commit 4b239e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
File renamed without changes.
File renamed without changes.

pact/ffi/ffi_verifier.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ def _load_ffi_library(self, ffi):
2020
target_platform = platform.platform().lower()
2121

2222
if 'darwin' in target_platform or 'macos' in target_platform:
23-
libname = "libpact_ffi-osx-x86_64.dylib"
23+
libname = "libs/libpact_ffi-osx-x86_64.dylib"
2424
elif 'linux' in target_platform:
25-
libname = "./libpact_ffi-linux-x86_64.so"
25+
libname = "libs/libpact_ffi-linux-x86_64.so"
2626
elif 'windows' in target_platform:
27-
libname = "libpact_ffi-osx-x86_64.dylib"
27+
libname = "libs/libpact_ffi-osx-x86_64.dylib"
2828
else:
2929
msg = ('Unfortunately, {} is not a supported platform. Only Linux,'
3030
' Windows, and OSX are currently supported.').format(

0 commit comments

Comments
 (0)