mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-27 15:07:41 +00:00
Fix syntax error in peekaboo-cli.ts
- Removed duplicate catch block that was causing compilation errors - Fixed missing closing brace in timeout handler - Verified TypeScript tests now run correctly on Linux with Swift tests skipped
This commit is contained in:
parent
271814cc90
commit
7b8b7f5fe1
2 changed files with 2 additions and 3 deletions
3
package-lock.json
generated
3
package-lock.json
generated
|
|
@ -10,7 +10,8 @@
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin",
|
||||||
|
"linux"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@modelcontextprotocol/sdk": "^1.12.0",
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
||||||
|
|
|
||||||
|
|
@ -160,8 +160,6 @@ export async function executeSwiftCli(
|
||||||
process.kill('SIGKILL');
|
process.kill('SIGKILL');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// Process is already dead, which is what we want
|
// Process is already dead, which is what we want
|
||||||
} catch (err) {
|
|
||||||
// Process is already dead, which is what we want
|
|
||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue