this.workingDir = project.getBaseDir().getCanonicalPath();
}
//If the user wants to debug the program, we return a different RunProfileState
if (executor.getClass().equals(DefaultDebugExecutor.class)) {
return new GoDebugProfileState(getProject(), env, this);
}
//Else run it
CommandLineState state = new GoRunProfileState(getProject(), env, this);