This is potentially useful for IDEs to hook into (hotkey to execute last command).
*/
public void reExecuteLastCommand() {
ExecutionRequest executionRequest = lastExecutionRequest;
if (executionRequest != null) {
gradlePluginLord.addExecutionRequestToQueue(executionRequest.getFullCommandLine(), executionRequest.getDisplayName(), executionRequest.forceOutputToBeShown());
}
}
}