Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ProB Rodin Plugin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
ProB Rodin Plugin
Commits
e520a8d9
Commit
e520a8d9
authored
2 years ago
by
dgelessus
Browse files
Options
Downloads
Patches
Plain Diff
Update CliStarter to new send_user_interrupt path
parent
8710ae2b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#100990
passed
2 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
de.prob.core/src/de/prob/cli/CliStarter.java
+3
-3
3 additions, 3 deletions
de.prob.core/src/de/prob/cli/CliStarter.java
with
3 additions
and
3 deletions
de.prob.core/src/de/prob/cli/CliStarter.java
+
3
−
3
View file @
e520a8d9
...
@@ -139,11 +139,11 @@ public final class CliStarter {
...
@@ -139,11 +139,11 @@ public final class CliStarter {
throws
CliException
{
throws
CliException
{
if
(
os
.
equals
(
Platform
.
OS_MACOSX
))
{
if
(
os
.
equals
(
Platform
.
OS_MACOSX
))
{
return
new
OsSpecificInfo
(
"macos"
,
"probcli.sh"
,
"sh"
,
return
new
OsSpecificInfo
(
"macos"
,
"probcli.sh"
,
"sh"
,
"send_user_interrupt"
);
"
lib/
send_user_interrupt"
);
}
}
if
(
os
.
equals
(
Platform
.
OS_WIN32
))
{
if
(
os
.
equals
(
Platform
.
OS_WIN32
))
{
return
new
OsSpecificInfo
(
"windows"
,
"probcli.exe"
,
null
,
return
new
OsSpecificInfo
(
"windows"
,
"probcli.exe"
,
null
,
"send_user_interrupt.exe"
);
"
lib\\
send_user_interrupt.exe"
);
}
}
if
(
os
.
equals
(
Platform
.
OS_LINUX
))
{
if
(
os
.
equals
(
Platform
.
OS_LINUX
))
{
...
@@ -152,7 +152,7 @@ public final class CliStarter {
...
@@ -152,7 +152,7 @@ public final class CliStarter {
linux
=
"linux64"
;
linux
=
"linux64"
;
}
}
return
new
OsSpecificInfo
(
linux
,
"probcli.sh"
,
"sh"
,
return
new
OsSpecificInfo
(
linux
,
"probcli.sh"
,
"sh"
,
"send_user_interrupt"
);
"
lib/
send_user_interrupt"
);
}
}
final
CliException
cliException
=
new
CliException
(
final
CliException
cliException
=
new
CliException
(
"ProB does not support the plattform: "
+
os
);
"ProB does not support the plattform: "
+
os
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment