mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-14 22:02:59 -07:00
Fix linter.
This commit is contained in:
@@ -27,7 +27,7 @@ try {
|
||||
);
|
||||
const response = JSON.parse(output);
|
||||
if (response.errors) {
|
||||
throw new Error(response.errors.map((e: any) => e.message).join(', '));
|
||||
throw new Error(response.errors.map((e: { message: string }) => e.message).join(', '));
|
||||
}
|
||||
const count = response.data.repository.issues.totalCount;
|
||||
console.log(`open_issues,${count}`);
|
||||
|
||||
Reference in New Issue
Block a user