Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #165: Fail to extract bundle file that's "libj2v8_macosx_x86_64.dylib" in jar file. #386

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

syabru
Copy link

@syabru syabru commented Feb 28, 2018

Fix short library name.

"libj2v8_macosx_x86_64.dylib" in jar file. Fix short library name.
@@ -31,7 +31,7 @@ private static String computeLibraryShortName() {
String base = "j2v8";
String osSuffix = getOS();
String archSuffix = getArchSuffix();
return base + "_" + osSuffix + "_" + archSuffix;
return base + "-" + osSuffix + "-" + archSuffix;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is weird, I never had this problem

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We experienced this both on Linux and OS X. Library is embedded in JAR with dashes instead of lower dashes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants