return null;
}
- public Process exec(String arguments, File workingDirectory) throws IOException {
- return Runtime.getRuntime().exec(this.getCommand() + " " + arguments, null, workingDirectory);
+ public Process exec(String arguments, File workingDirectory, String[] env) throws IOException {
+ return Runtime.getRuntime().exec(this.getCommand() + " " + arguments, env, workingDirectory);
}
public boolean equals(Object other) {