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

Fix missed getOsInfo call

parent 1df5ebcd
Branches
No related tags found
No related merge requests found
Pipeline #103244 passed
...@@ -345,8 +345,7 @@ public final class CliStarter { ...@@ -345,8 +345,7 @@ public final class CliStarter {
public void sendUserInterruptReference() { public void sendUserInterruptReference() {
if (userInterruptReference != null) { if (userInterruptReference != null) {
try { try {
final OsSpecificInfo osInfo = getOsInfo(Platform.getOS(), final OsSpecificInfo osInfo = getOsInfo(Platform.getOS());
Platform.getOSArch());
final String command = getCliPath() + File.separator final String command = getCliPath() + File.separator
+ osInfo.subdir + File.separator + osInfo.subdir + File.separator
+ osInfo.userInterruptCmd; + osInfo.userInterruptCmd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment