Skip to content

Commit

Permalink
Issue eclipse#66: Run dotnet restore before starting LS
Browse files Browse the repository at this point in the history
Re-add previously removed workaround for
OmniSharp/omnisharp-node-client#265
  • Loading branch information
Lucas Bullen committed Nov 21, 2017
1 parent 90f1a70 commit fe4df78
Showing 1 changed file with 23 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,32 @@ public OmnisharpStreamConnectionProvider() {

@Override
public void start() throws IOException {
// workaround for https://github.com/OmniSharp/omnisharp-node-client/issues/265
String[] command;
try {
command = new String[] { "/bin/bash", "-c", AcutePlugin.getDotnetCommand(), "restore" };
if (Platform.getOS().equals(Platform.OS_WIN32)) {
command = new String[] { "cmd", "/c", AcutePlugin.getDotnetCommand(), "restore" };
}
Process restoreProcess = Runtime.getRuntime().exec(command);
try {
restoreProcess.waitFor();
} catch (InterruptedException e) {
AcutePlugin.logError(e);
}
} catch (IllegalStateException e) {
AcutePlugin.getDefault().getLog().log(new Status(IStatus.ERROR,
AcutePlugin.getDefault().getBundle().getSymbolicName(),
"`dotnet restore` not performed!\n"
+ "Main issue and remediation: The `dotnet` path is not set in the .NET Core preferences. Please set it.\n"
+ "Possible alternative remediation:\n"
+ "* `dotnet` (v2.0 or later) is a prerequisite. Install it on your system if missing."));
}

String commandLine = System.getenv("OMNISHARP_LANGUAGE_SERVER_COMMAND");
String omnisharpLocation = System.getenv("OMNISHARP_LANGUAGE_SERVER_LOCATION");
if (commandLine != null) {
String[] command = new String[] {"/bin/bash", "-c", commandLine};
command = new String[] {"/bin/bash", "-c", commandLine};
if (Platform.getOS().equals(Platform.OS_WIN32)) {
command = new String[] {"cmd", "/c", commandLine};
}
Expand Down

0 comments on commit fe4df78

Please sign in to comment.