mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-13 19:40:28 -07:00
repro: add even more logging to HookRunner and TestRig
This commit is contained in:
@@ -65,7 +65,11 @@ export function sanitizeTestName(name: string) {
|
||||
* On Windows, this converts backslashes to forward slashes.
|
||||
*/
|
||||
export function normalizePath(p: string): string {
|
||||
return p.replace(/\\/g, '/');
|
||||
const result = p.replace(/\\/g, '/');
|
||||
if (process.env['CI'] === 'true' || process.env['VERBOSE'] === 'true') {
|
||||
console.log(`[normalizePath] "${p}" -> "${result}"`);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
// Helper to create detailed error messages
|
||||
|
||||
Reference in New Issue
Block a user