absolute path required for FindExecutable

This commit is contained in:
Doug MacEachern 2006-01-16 17:58:40 +00:00
parent b452be5c40
commit 1be17d8e6d
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public abstract class Win32 {
String exe; String exe;
try { try {
exe = findExecutable(name); exe = findExecutable(new File(name).getAbsolutePath());
} catch (SigarException e) { } catch (SigarException e) {
return null; return null;
} }