mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 21:03:05 -07:00
Unused error variables in catch block are not allowed (#24487)
This commit is contained in:
@@ -424,7 +424,7 @@ export class IDEServer {
|
||||
if (this.portFile) {
|
||||
try {
|
||||
await fs.unlink(this.portFile);
|
||||
} catch (_err) {
|
||||
} catch {
|
||||
// Ignore errors if the file doesn't exist.
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user