Skip to content

Commit

Permalink
improve Cloud jars loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Apr 20, 2021
1 parent 5a5a771 commit 23ec8a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Server/src/main/java/prompto/server/AppServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ private static void installCloudJARs() throws Exception {
Cloud cloud = Cloud.current();
if(cloud==null)
return;
installCloudJARs(cloud);
}

public static void installCloudJARs(Cloud cloud) throws Exception {
Collection<URL> jars = cloud.getJarURsL();
if(jars==null)
return;
Expand Down

0 comments on commit 23ec8a6

Please sign in to comment.