Skip to content
Snippets Groups Projects
Commit e520a8d9 authored by dgelessus's avatar dgelessus
Browse files

Update CliStarter to new send_user_interrupt path

parent 8710ae2b
No related branches found
No related tags found
No related merge requests found
Pipeline #100990 passed
......@@ -139,11 +139,11 @@ public final class CliStarter {
throws CliException {
if (os.equals(Platform.OS_MACOSX)) {
return new OsSpecificInfo("macos", "probcli.sh", "sh",
"send_user_interrupt");
"lib/send_user_interrupt");
}
if (os.equals(Platform.OS_WIN32)) {
return new OsSpecificInfo("windows", "probcli.exe", null,
"send_user_interrupt.exe");
"lib\\send_user_interrupt.exe");
}
if (os.equals(Platform.OS_LINUX)) {
......@@ -152,7 +152,7 @@ public final class CliStarter {
linux = "linux64";
}
return new OsSpecificInfo(linux, "probcli.sh", "sh",
"send_user_interrupt");
"lib/send_user_interrupt");
}
final CliException cliException = new CliException(
"ProB does not support the plattform: " + os);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment