We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9129cca commit 8e2f122Copy full SHA for 8e2f122
src/debugger/debugger.ts
@@ -44,8 +44,12 @@ async function getBinaryPath(): Promise<string | undefined> {
44
45
const output = execFileSync(kaniBinaryPath, commandSplit.args, options);
46
const outputString = output.toString();
47
-
48
const lines = outputString.trim().split('\n');
+ // Remove version string before JSON parsing
49
+ // NOTE: This is a temporary patch till <https://github.com/model-checking/kani/issues/2649> is fixed.
50
+ lines.shift();
51
+
52
+ // Parse JSON objects from response
53
const jsonMessages = lines.map((line: string) => JSON.parse(line));
54
55
/*
0 commit comments