fixup: forgot the lib prefix

This commit is contained in:
Christian Schwarz
2023-03-29 19:48:51 +02:00
parent 1b9b1e5e71
commit 919e11e001

View File

@@ -265,8 +265,8 @@ jobs:
jq -r '.packages[].targets[] | select(.kind | index("cdylib")) | .name'
)
for lib in $cdylibs; do
SRC=target/$BUILD_TYPE/$lib.so
DST=/tmp/neon/bin/$lib.so
SRC=target/$BUILD_TYPE/lib$lib.so
DST=/tmp/neon/bin/lib$lib.so
cp "$SRC" "$DST"
done