mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-03-25 09:25:47 +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,
|
||||
"license": "MIT",
|
||||
"os": [
|
||||
"darwin"
|
||||
"darwin",
|
||||
"linux"
|
||||
],
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.12.0",
|
||||
|
|
|
|||
|
|
@ -160,8 +160,6 @@ export async function executeSwiftCli(
|
|||
process.kill('SIGKILL');
|
||||
} catch (err) {
|
||||
// Process is already dead, which is what we want
|
||||
} catch (err) {
|
||||
// Process is already dead, which is what we want
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue