Skip to content

Commit

Permalink
Added print statement to make sure it is doing what is expected
Browse files Browse the repository at this point in the history
  • Loading branch information
lacan committed Jul 15, 2014
1 parent 2d41c4f commit 2fe2490
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Binary file modified dist/BIOP_LibInstaller.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions src/BIOP_LibInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ public static void installLibrary(String libPath) {
String libName = f.getName().substring(0, f.getName().length()-4);

if (!f.isAbsolute()) {
IJ.log("Relative Path, adding Path to Fiji");
// Make path absolute by appending the Fiji/ImageJ root to it.
String fijiPath = Menus.getPlugInsPath();
libPath = fijiPath+libPath;
f = new File(libPath);
fullPath = f.getAbsolutePath();

}

IJ.log("Full path to "+libName+" :"+fullPath);
Expand Down

0 comments on commit 2fe2490

Please sign in to comment.