String[] command = GoSdkUtil.computeGoGetCommand(goExecName, "-u -v", packageURL);
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(command, goEnv, new File(projectDir));
OSProcessHandler handler = new OSProcessHandler(proc, null);
toolWindow.attachConsoleViewToProcess(handler);
toolWindow.printNormalMessage(String.format("%s%n", StringUtil.join(command, " ")));
toolWindow.show();
handler.startNotify();
if (proc.waitFor() == 0) {
toolWindow.printNormalMessage(String.format("%nFinished go get package %s%n", packageURL));
} else {