mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-03 13:41:05 -07:00
Merge branch 'u/anj/task-tracker-phase-1' into u/anj/task-tracker-phase-2
This commit is contained in:
@@ -245,8 +245,13 @@ export class Storage {
|
||||
return path.join(this.getProjectTempDir(), 'plans');
|
||||
}
|
||||
|
||||
getProjectTempTrackerDir(): string {
|
||||
return path.join(this.getProjectTempDir(), 'tracker');
|
||||
getProjectTempTrackerDir(sessionId: string): string {
|
||||
return path.join(
|
||||
this.getProjectTempDir(),
|
||||
sessionId,
|
||||
'.tracker',
|
||||
sessionId,
|
||||
);
|
||||
}
|
||||
|
||||
getExtensionsDir(): string {
|
||||
|
||||
Reference in New Issue
Block a user