Skip to content

Commit 15234cc

Browse files
authored
Merge branch 'main' into main
2 parents bfcae0a + 5ecc137 commit 15234cc

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

docs/cli/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ In addition to a project settings file, a project's `.gemini` directory can cont
136136
},
137137
"myDockerServer": {
138138
"command": "docker",
139-
"args": ["run", "i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
139+
"args": ["run", "-i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
140140
"env": {
141141
"API_KEY": "$MY_API_TOKEN"
142142
}
143-
},
143+
}
144144
}
145145
```
146146

packages/core/src/tools/grep.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ describe('GrepTool', () => {
234234
};
235235
// The path will be relative to the tempRootDir, so we check for containment.
236236
expect(grepTool.getDescription(params)).toContain("'testPattern' within");
237-
expect(grepTool.getDescription(params)).toContain('src/app');
237+
expect(grepTool.getDescription(params)).toContain(
238+
path.join('src', 'app'),
239+
);
238240
});
239241

240242
it('should generate correct description with pattern, include, and path', () => {

0 commit comments

Comments
 (0)