mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-05-24 09:38:34 +00:00
fix(e2e): Use rmSync instead of rm -rf for e2e tests (#11087)
This commit is contained in:
parent
9e8c767694
commit
7b06a0bebd
1 changed files with 1 additions and 1 deletions
|
|
@ -512,7 +512,7 @@ export class TestRig {
|
|||
// Clean up test directory
|
||||
if (this.testDir && !env['KEEP_OUTPUT']) {
|
||||
try {
|
||||
execSync(`rm -rf ${this.testDir}`);
|
||||
fs.rmSync(this.testDir, { recursive: true, force: true });
|
||||
} catch (error) {
|
||||
// Ignore cleanup errors
|
||||
if (env['VERBOSE'] === 'true') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue