Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
bilicainiaohh committed Feb 9, 2024
1 parent 0155a58 commit 444e644
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public CTCPreloadClassLoader(ClassLoader parent) {
public void addURL(URL url) {
super.addURL(url);
try {
System.setProperty("java.class.path", System.getProperty("java.class.path") + ":" + new File(url.toURI()).getAbsolutePath());
System.setProperty("java.class.path", System.getProperty("java.class.path") + ":" + System.getenv("H2CO3Launcher_NATIVEDIR") + ":" + new File(url.toURI()).getAbsolutePath());
} catch (URISyntaxException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 444e644

Please sign in to comment.