import java.io.File;
import java.io.IOException;
-import org.eclipse.core.internal.resources.OS;
import org.eclipse.core.runtime.IPath;
public class PHPInterpreter {
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) {