Skip to content
Snippets Groups Projects
Commit f3a7f594 authored by carlosuc3m's avatar carlosuc3m
Browse files

temporal workaround

parent 98fad56b
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,8 @@ public class DeepLearningVersion
* @return list of strings representing the names of the JARs
*/
public List<String> getJarsFileNames(){
return jars.stream().map(jar -> jar.substring(jar.lastIndexOf("/") + 1)).collect(Collectors.toList());
return jars.stream().filter(i -> !i.contains("drive"))
.map(jar -> jar.substring(jar.lastIndexOf("/") + 1)).collect(Collectors.toList());
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment