Skip to content

Commit

Permalink
More failing fast
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrank13 committed Jul 22, 2022
1 parent c7bf064 commit ec8cdee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'jacoco'

allprojects {
group = 'io.emeraldpay.polkaj'
version = "0.3.1.3"
version = "0.3.1.4"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ private static void extractJNI() throws IOException {
usrPathsField.set(initializePathMethod.invoke(libraryPathProperty));
} catch (Throwable e) {
System.err.println("Unable to update usr_paths field. " + e.getClass() + ":" + e.getMessage());
e.printStackTrace(System.err);
throw new IllegalStateException(e);
}
}

Expand Down

0 comments on commit ec8cdee

Please sign in to comment.