absolute path required for FindExecutable
This commit is contained in:
parent
b452be5c40
commit
1be17d8e6d
|
@ -34,7 +34,7 @@ public abstract class Win32 {
|
|||
|
||||
String exe;
|
||||
try {
|
||||
exe = findExecutable(name);
|
||||
exe = findExecutable(new File(name).getAbsolutePath());
|
||||
} catch (SigarException e) {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue